python画椭圆形函数算法_详解opencv中画圆circle函数和椭圆ellipse函数

1. void ellipse(InputOutputArray img, Point center, Size axes, double angle, double startAngle, double endAngle,

const Scalar& color, int thickness = 1, int lineType = LINE_8, int shift = 0);

ellipse函数将椭圆画到图像 lmg 上, 椭圆中心为点center,并且大小位于矩形 axes 内,椭圆旋转角度为 angle, 扩展的弧度从 0 度到 360 度,

图形颜色为 Scalar(x, y,z),线宽 (thickness)为 1,线型(lineType)为 8 (8 联通线型)。

2. void circle(InputOutputArray img, Point center, int radius, const Scalar& color, int thickness = 1, int lineType = LINE_8, int shift = 0);

img :表示输入的图像

center: 圆心坐标

radius: 圆的半径

color:Scalar类型,表示圆的颜色,例如蓝色为Scalar(255,0,0)

thickness:线的宽度

lineType:线的类型,(默认为8联通型)

#include

#include

using namespace cv;

using namespace std;

#define WINDOW_NAME1 "绘制图1"

#define WINDOW_NAME2 "绘制图2"

#define WINDOW_WIDTH 600 //定义窗口大小

string image = "C:\\Users\\asus\\Pictures\\Saved Pictures\\123.jpg";

void DrawEllipse(Mat img, double angle);

void DrawFi1ledCirc1e(Mat img, Point center);

int main()

{

Mat atomImage = Mat::zeros(WINDOW_WIDTH, WINDOW_WIDTH, CV_8UC3);

Mat rookImage = Mat::zeros(WINDOW_WIDTH, WINDOW_WIDTH, CV_8UC3);

//绘制椭圆

DrawEllipse(atomImage, 90);

DrawEllipse(atomImage, 0);

DrawEllipse(atomImage, 45);

DrawEllipse(atomImage, -45);

//绘制圆心

DrawFi1ledCirc1e(atomImage, Point(WINDOW_WIDTH / 2,WINDOW_WIDTH / 2));

imshow(WINDOW_NAME1, atomImage);

waitKey(0);

return 0;

}

void DrawEllipse(Mat img, double angle) {

int thickness = 2;

int lineType = 8;

ellipse(img, Point(WINDOW_WIDTH / 2, WINDOW_WIDTH / 2),

Size(WINDOW_WIDTH / 4, WINDOW_WIDTH / 16), angle, 0, 360, Scalar(255, 129, 0),

thickness, lineType);

}

void DrawFi1ledCirc1e(Mat img, Point center) {

int thickness = -1;

int lineType = 8;

circle(img, center, WINDOW_WIDTH / 32, Scalar(0, 0, 255), thickness, lineType);

}

2019122709474611.png?2019112794811

总结

以上所述是小编给大家介绍的opencv中画圆circle函数和椭圆ellipse函数,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对我们网站的支持!

如果你觉得本文对你有帮助,欢迎转载,烦请注明出处,谢谢!

本文标题: 详解opencv中画圆circle函数和椭圆ellipse函数

本文地址: http://www.cppcns.com/jiaoben/python/295749.html

  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值