1 Star 1 Fork 0

ProudRabbit/learn-opencv

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
11几何形状绘制.cpp 1.21 KB
一键复制 编辑 原始数据 按行查看 历史
ProudRabbit 提交于 2021-08-31 11:49 . opecv_demo
#include <iostream>
#include <opencv2/opencv.hpp>
using namespace std;
using namespace cv;
int main(int argc, char** argv)
{
Mat img = imread("./Image/2.jpg", IMREAD_COLOR);
if (img.empty())
{
cout << "图像加载失败" << endl;
return -1;
}
rectangle(img, Point(50, 50), Point(300, 300), Scalar(0, 0, 255), 3, LINE_8); // 绘制矩形
circle(img, Point(100, 100), 30, Scalar(255, 255, 255), 2, LINE_8); // 绘制圆形
line(img, Point(50, 50), Point(300, 300), Scalar(0, 255, 0), 2, LINE_8); // 绘制线
ellipse(img, Point(200, 200), Size(100, 200), 0, 0, 360, Scalar(200, 0, 0), 2, LINE_8); // 绘制椭圆
Point p1(100, 100);
Point p2(350, 100);
Point p3(450, 280);
Point p4(320, 450);
Point p5(100, 100);
vector<Point> pts;
pts.push_back(p1);
pts.push_back(p2);
pts.push_back(p3);
pts.push_back(p4);
pts.push_back(p5);
//polylines(img, pts, true, Scalar(0, 255, 255), 6, LINE_8); // 绘制多边形,该函数不能通过修改线宽填充多边形
//fillPoly(img, pts, Scalar(255, 0, 0), LINE_8); // 填充多边型
vector<vector<Point>> contours;
contours.push_back(pts);
drawContours(img, contours, 0, Scalar(200, 200, 0), FILLED, LINE_8); // 绘制轮廓
imshow("绘制演示", img);
waitKey(0);
destroyAllWindows();
return 0;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/proudrabbit/learn-opencv.git
[email protected]:proudrabbit/learn-opencv.git
proudrabbit
learn-opencv
learn-opencv
master

搜索帮助