详解opencv中画圆circle函数和椭圆ellipse函数


Posted in Python onDecember 27, 2019

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<iostream>
#include<opencv2/opencv.hpp>
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);
}

详解opencv中画圆circle函数和椭圆ellipse函数

总结

以上所述是小编给大家介绍的opencv中画圆circle函数和椭圆ellipse函数,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对三水点靠木网站的支持!
如果你觉得本文对你有帮助,欢迎转载,烦请注明出处,谢谢!

Python 相关文章推荐
Python标准库之循环器(itertools)介绍
Nov 25 Python
使用PyInstaller将Python程序文件转换为可执行程序文件
Jul 08 Python
Python编程实现控制cmd命令行显示颜色的方法示例
Aug 14 Python
基于Django与ajax之间的json传输方法
May 29 Python
Python之dict(或对象)与json之间的互相转化实例
Jun 05 Python
python2.7和NLTK安装详细教程
Sep 19 Python
Python中时间datetime的处理与转换用法总结
Feb 18 Python
Python获取、格式化当前时间日期的方法
Feb 10 Python
python golang中grpc 使用示例代码详解
Jun 03 Python
keras训练浅层卷积网络并保存和加载模型实例
Jul 02 Python
python报错: 'list' object has no attribute 'shape'的解决
Jul 15 Python
使用Python实现音频双通道分离
Dec 25 Python
如何更改 pandas dataframe 中两列的位置
Dec 27 #Python
使用OpenCV circle函数图像上画圆的示例代码
Dec 27 #Python
python的slice notation的特殊用法详解
Dec 27 #Python
详解Python Opencv和PIL读取图像文件的差别
Dec 27 #Python
pandas 对group进行聚合的例子
Dec 27 #Python
pandas-resample按时间聚合实例
Dec 27 #Python
python 实现简单的FTP程序
Dec 27 #Python
You might like
使用swoole扩展php websocket示例
2014/02/13 PHP
php对数组排序代码分享
2014/02/24 PHP
windows服务器中检测PHP SSL是否开启以及开启SSL的方法
2014/04/25 PHP
PHP实现克鲁斯卡尔算法实例解析
2014/08/22 PHP
js技巧--转义符&quot;\&quot;的妙用
2007/01/09 Javascript
$()JS小技巧
2007/07/21 Javascript
js实现鼠标悬停图片上时滚动文字说明的方法
2015/02/17 Javascript
cocos2dx骨骼动画Armature源码剖析(一)
2015/09/08 Javascript
jquery彩色投票进度条简单实例演示
2020/07/23 Javascript
实例详解ECMAScript5中新增的Array方法
2016/04/05 Javascript
jquery之别踩白块游戏的简单实现
2016/07/25 Javascript
jQuery实现倒计时重新发送短信验证码功能示例
2017/01/12 Javascript
Angular.js自定义指令学习笔记实例
2017/02/24 Javascript
Angular.js中控制器之间的传值详解
2017/04/24 Javascript
js评分组件使用详解
2017/06/06 Javascript
解决微信二次分享不显示摘要和图片的问题
2017/08/18 Javascript
Vue列表渲染的示例代码
2018/11/01 Javascript
移动端H5页面返回并刷新页面(BFcache)的方法
2018/11/06 Javascript
原生JS实现微信通讯录
2020/06/18 Javascript
详解常用查找数据结构及算法(Python实现)
2016/12/09 Python
python 集合 并集、交集 Series list set 转换的实例
2018/05/29 Python
python保存二维数组到txt文件中的方法
2018/11/15 Python
解决pycharm每次打开项目都需要配置解释器和安装库问题
2020/02/26 Python
JetBrains PyCharm(Community版本)的下载、安装和初步使用图文教程详解
2020/03/19 Python
关于Python3爬虫利器Appium的安装步骤
2020/07/29 Python
Python如何创建装饰器时保留函数元信息
2020/08/07 Python
Python基于staticmethod装饰器标示静态方法
2020/10/17 Python
python中的split、rsplit、splitlines用法说明
2020/10/23 Python
python 如何读、写、解析CSV文件
2021/03/03 Python
Linux管理员面试题 Linux admin interview questions
2014/11/01 面试题
幼师专业求职推荐信
2013/11/08 职场文书
会议接待欢迎标语
2014/10/08 职场文书
建筑横幅标语
2014/10/09 职场文书
详解nodejs内置模块
2021/05/06 NodeJs
Vue Element UI自定义描述列表组件
2021/05/18 Vue.js
总结Pyinstaller打包的高级用法
2021/06/28 Python