IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 人工智能 -> 毛易云opencv之4.3基本图形的绘制(画出原子图和组合图) -> 正文阅读

[人工智能]毛易云opencv之4.3基本图形的绘制(画出原子图和组合图)

?

?

代码如下:

#include <opencv2/opencv.hpp>
#include<opencv2/core/core.hpp>
#include"opencv2/highgui/highgui.hpp"
#include<opencv2/imgproc/imgproc.hpp>
#include<iostream>

using namespace std;
using namespace cv;

#define WINDOW_WIDTH 600
#define WINDOW_NAME1 "[绘制图1]"
#define WINDOW_NAME2 "[绘制图2]"

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 DrawFilledCircle(Mat img, Point center)
{

?? ?int thickness = -1;
?? ?int lineType = 8;

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

?
void ?DrawPolygon(Mat img)
{
?? ?int lineType = 8;
?? ?Point rookPoints[1][20];
?? ?rookPoints[0][0] = Point(WINDOW_WIDTH / 4, 7 * WINDOW_WIDTH / 8);
?? ?rookPoints[0][1] = Point(3*WINDOW_WIDTH/4,7* WINDOW_WIDTH/8);
?? ?rookPoints[0][2] = Point(3* WINDOW_WIDTH/4,13* WINDOW_WIDTH/16);
?? ?rookPoints[0][3] = Point(11* WINDOW_WIDTH/16,13* WINDOW_WIDTH/16);
?? ?rookPoints[0][4] = Point(19* WINDOW_WIDTH/32,3* WINDOW_WIDTH/8);
?? ?rookPoints[0][5] = Point(3* WINDOW_WIDTH/4,3* WINDOW_WIDTH/8);
?? ?rookPoints[0][6] = Point(3* WINDOW_WIDTH/4, WINDOW_WIDTH/8);
?? ?rookPoints[0][7] = Point(26 * WINDOW_WIDTH / 40, WINDOW_WIDTH / 8);
?? ?rookPoints[0][8] = Point(26* WINDOW_WIDTH/40, WINDOW_WIDTH/4);
?? ?rookPoints[0][9] = Point(22* WINDOW_WIDTH/40, WINDOW_WIDTH/4);
?? ?rookPoints[0][10] = Point(22*WINDOW_WIDTH/40,WINDOW_WIDTH/8);
?? ?rookPoints[0][11] = Point(18*WINDOW_WIDTH/40, WINDOW_WIDTH/8);
?? ?rookPoints[0][12] = Point(18* WINDOW_WIDTH/40, WINDOW_WIDTH/4);
?? ?rookPoints[0][13] = Point(14* WINDOW_WIDTH/40, WINDOW_WIDTH/4);
?? ?rookPoints[0][14] = Point(14* WINDOW_WIDTH/40, WINDOW_WIDTH/8);
?? ?rookPoints[0][15] = Point(WINDOW_WIDTH/4, WINDOW_WIDTH/8);
?? ?rookPoints[0][16] = Point(WINDOW_WIDTH/4,3* WINDOW_WIDTH/8);
?? ?rookPoints[0][17] = Point(13* WINDOW_WIDTH/32,3* WINDOW_WIDTH/8);
?? ?rookPoints[0][18] = Point(5* WINDOW_WIDTH/16,13* WINDOW_WIDTH/16);
?? ?rookPoints[0][19] = Point(WINDOW_WIDTH/4,13* WINDOW_WIDTH/16);

?? ?const Point* ppt[1] = { rookPoints[0] };
?? ?int npt[] = { 20 };

?? ?fillPoly(img,
?? ??? ?ppt,
?? ??? ?npt,
?? ??? ?1,
?? ??? ?Scalar(255, 255, 255),
?? ??? ?lineType);

}

void DrawLine(Mat img,Point start,Point end)
{
?? ?int thickness = 2;
?? ?int lineType = 8;
?? ?line(img,
?? ??? ?start,
?? ??? ?end,
?? ??? ?Scalar(0, 0, 0),
?? ??? ?thickness,
?? ??? ?lineType);
}

int main(void)
{
?? ?Mat atmoImage = Mat::zeros(WINDOW_WIDTH, WINDOW_WIDTH, CV_8UC3);
?? ?Mat rookImage = Mat::zeros(WINDOW_WIDTH, WINDOW_WIDTH,CV_8UC3);

?? ?DrawEllipse(atmoImage,90);
?? ?DrawEllipse(atmoImage, 0);
?? ?DrawEllipse(atmoImage, 45);
?? ?DrawEllipse(atmoImage, -45);

?? ?DrawFilledCircle(atmoImage, Point(WINDOW_WIDTH / 2, WINDOW_WIDTH / 2));
?? ?DrawPolygon(rookImage);

?? ?rectangle(rookImage,
?? ??? ?Point(0,7* WINDOW_WIDTH / 8),
?? ??? ?Point(WINDOW_WIDTH , WINDOW_WIDTH ),
?? ??? ?Scalar(0,255,255),
?? ??? ?-1,
?? ?8);

?? ?DrawLine(rookImage, Point(0, 15 * WINDOW_WIDTH / 16), Point(WINDOW_WIDTH, 15 * WINDOW_WIDTH / 16));
?? ?DrawLine(rookImage, Point(WINDOW_WIDTH / 4, 7 * WINDOW_WIDTH / 8), Point(WINDOW_WIDTH/4, 15 * WINDOW_WIDTH ));
?? ?DrawLine(rookImage, Point(WINDOW_WIDTH / 4, 7 * WINDOW_WIDTH / 8), Point(WINDOW_WIDTH / 4, ?WINDOW_WIDTH));
?? ?DrawLine(rookImage, Point(3*WINDOW_WIDTH / 4, 7 * WINDOW_WIDTH / 8), Point(3*WINDOW_WIDTH / 4, WINDOW_WIDTH));


?? ?imshow(WINDOW_NAME1,atmoImage);
?? ?moveWindow(WINDOW_NAME1,0,200);
?? ?imshow(WINDOW_NAME2, rookImage);
?? ?moveWindow(WINDOW_NAME2, WINDOW_WIDTH, 200);

?? ?waitKey(0);
?? ?return (0);
}

?

  人工智能 最新文章
2022吴恩达机器学习课程——第二课(神经网
第十五章 规则学习
FixMatch: Simplifying Semi-Supervised Le
数据挖掘Java——Kmeans算法的实现
大脑皮层的分割方法
【翻译】GPT-3是如何工作的
论文笔记:TEACHTEXT: CrossModal Generaliz
python从零学(六)
详解Python 3.x 导入(import)
【答读者问27】backtrader不支持最新版本的
上一篇文章      下一篇文章      查看所有文章
加:2021-10-23 12:29:25  更:2021-10-23 12:32:18 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/27 8:39:37-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码