欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

OpenCV繪制正多邊形的方法

 更新時間:2019年01月12日 11:13:43   作者:激萌小宅  
這篇文章主要為大家詳細(xì)介紹了OpenCV繪制正多邊形的方法,具有一定的參考價值,感興趣的小伙伴們可以參考一下

OpenCV 繪制正多邊形的具體代碼,供大家參考,具體內(nèi)容如下

#include <iostream> 
#include <opencv2\core\core.hpp>
#include <opencv2\opencv.hpp> 
#include <opencv2\highgui\highgui.hpp> 
#include <opencv2\contrib\contrib.hpp> 
 
#include <fstream> 
 
using namespace cv;
using namespace std;
 
void DeleteRepetition(vector<Point> &Data)
{
 vector<Point>::iterator it, it1;
 for (it = ++Data.begin(); it != Data.end();) {
 it1 = find(Data.begin(), it, *it);
 if (it1 != it) it = Data.erase(it);
 else it++;
 }
}
 
void Patterns(Mat *src, vector<Point> Dots, int fill)
{
 DeleteRepetition(Dots);
 if (fill == -1)
 {
 Point *ImgDot = new Point(Dots.size());
 for (int i = 0; i < Dots.size(); i++) {
 ImgDot[i] = Dots[i];
 }
 const Point* ppt = ImgDot;
 int npt = Dots.size();
 RNG &rng = theRNG();
 Scalar color = Scalar(rng.uniform(100, 255), rng.uniform(100, 255), rng.uniform(100, 255));
 cv::fillPoly(*src, &ppt, &npt, 1, color);
 }
 else
 {
 Dots.push_back(Dots[0]);
 RNG &rng = theRNG();
 Scalar color = Scalar(rng.uniform(100, 255), rng.uniform(100, 255), rng.uniform(100, 255));
 for (int i = 0; i < Dots.size() - 1; i++)
 {
 line(*src, Dots[i], Dots[i + 1], color, fill);
 }
 }
}
 
// https://www.w3cplus.com/canvas/drawing-regular-polygons.html
// http://www.cnblogs.com/xcywt/p/9456526.html
// 圖像、中心點(diǎn)、半徑、邊數(shù)、旋轉(zhuǎn)角度、線寬
void EquilateralPolygon(Mat *src, Point origin, int radius, int brim, int rotate, int fill)
{
 if (brim < 3) return;
 if (rotate > 360) return;
 
#define PI 3.14159265
#define ROTATE_COUNT 180
 
 double nAgree = 360 / brim; // 計(jì)算旋轉(zhuǎn)角度
 double a = radius * cos(PI / brim);  // 計(jì)算垂直向下的長度
 double s = 2 * radius * sin(PI / brim); // 計(jì)算邊長
 
 vector<Point> Dots;
 Point D1, D2;
 D1.x = origin.x + radius*cos(-(((180 - nAgree) / 2) + rotate) * PI / 180);
 D1.y = origin.y - radius*sin(-(((180 - nAgree) / 2) + rotate) * PI / 180);
 D2.x = origin.x + radius*cos(-(((180 - nAgree) / 2) + nAgree + rotate) * PI / 180);
 D2.y = origin.y - radius*sin(-(((180 - nAgree) / 2) + nAgree + rotate) * PI / 180);
 
 // 第一條邊的兩個點(diǎn)
 Dots.push_back(D1);
 Dots.push_back(D2);
 
 for (int i = 0; i < brim - 2; i++)
 {
 double dSinRot = sin((nAgree * (i + 1)) * PI / 180);
 double dCosRot = cos((nAgree * (i + 1)) * PI / 180);
 int x = origin.x + dCosRot * (D2.x - origin.x) - dSinRot * (D2.y - origin.y);
 int y = origin.y + dSinRot * (D2.x - origin.x) + dCosRot * (D2.y - origin.y);
 Dots.push_back(Point(x, y));
 }
 Patterns(src, Dots, fill);
 Dots.clear();
}
 
int main()
{
 
 Mat Img = Mat::zeros(800, 800, CV_8UC3);
 Point O = Point(400, 400);
 
 circle(Img, O, 2, Scalar(0, 0, 255), -1); //中心點(diǎn)
 
 EquilateralPolygon(&Img, O, 100, 3, 0, -1); // 填充的正三角形
 EquilateralPolygon(&Img, O, 200, 3, 0, 1); // 不填充的正三角形
 EquilateralPolygon(&Img, O, 200, 3, 30, 1); // 不填充的正三角形,順時針旋轉(zhuǎn)30度
 EquilateralPolygon(&Img, O, 200, 3, 60, 1); // 不填充的正三角形,順時針旋轉(zhuǎn)60度
 EquilateralPolygon(&Img, O, 200, 3, 90, 1); // 不填充的正三角形,順時針旋轉(zhuǎn)90度
 EquilateralPolygon(&Img, O, 200, 3, 120, 1);// 不填充的正三角形,順時針旋轉(zhuǎn)120度
 EquilateralPolygon(&Img, O, 200, 3, 150, 1);// 不填充的正三角形,順時針旋轉(zhuǎn)150度
 EquilateralPolygon(&Img, O, 200, 3, 180, 1);// 不填充的正三角形,順時針旋轉(zhuǎn)180度
 
 EquilateralPolygon(&Img, O, 230, 4, 0, 2); // 不填充的正四邊形
 EquilateralPolygon(&Img, O, 250, 5, 0, 3); // 不填充的正五邊形
 EquilateralPolygon(&Img, O, 270, 6, 0, 4); // 不填充的正六邊形
 EquilateralPolygon(&Img, O, 290, 7, 0, 5); // 不填充的正七邊形
 EquilateralPolygon(&Img, O, 310, 8, 0, 6); // 不填充的正八邊形
 EquilateralPolygon(&Img, O, 330, 9, 0, 7); // 不填充的正九邊形
 EquilateralPolygon(&Img, O, 350, 10, 0, 8);// 不填充的正十邊形
 
 imshow("正多邊形", Img);
 waitKey(0);
 return 0;
}

效果如下: 

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

相關(guān)文章

  • 深入Linux grep指令的詳解(實(shí)用型)

    深入Linux grep指令的詳解(實(shí)用型)

    本篇文章是對Linux下的grep指令進(jìn)行了詳細(xì)的分析介紹,需要的朋友參考下
    2013-05-05
  • C++?Socket實(shí)現(xiàn)TCP與UDP網(wǎng)絡(luò)編程

    C++?Socket實(shí)現(xiàn)TCP與UDP網(wǎng)絡(luò)編程

    本文主要介紹了C++?Socket實(shí)現(xiàn)TCP與UDP網(wǎng)絡(luò)編程,文中通過示例代碼介紹的非常詳細(xì),具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2022-01-01
  • EasyC++自動存儲持續(xù)性

    EasyC++自動存儲持續(xù)性

    這篇文章主要介紹了EasyC++自動存儲持續(xù)性,下面文章圍繞EasyC++自動存儲持續(xù)性的相關(guān)資料展開全文資料,需要的小伙伴可以參考一下下面文章的具體內(nèi)容,希望對你的學(xué)習(xí)有所幫助
    2021-12-12
  • Qt利用QState狀態(tài)機(jī)實(shí)現(xiàn)控件互斥操作詳解

    Qt利用QState狀態(tài)機(jī)實(shí)現(xiàn)控件互斥操作詳解

    這篇文章主要為大家詳細(xì)介紹了Qt如何利用QState狀態(tài)機(jī)實(shí)現(xiàn)控件互斥操作,文中的示例代碼講解詳細(xì),感興趣的小伙伴可以跟隨小編一起學(xué)習(xí)一下
    2022-12-12
  • opencv3/C++基于顏色的目標(biāo)跟蹤方式

    opencv3/C++基于顏色的目標(biāo)跟蹤方式

    今天小編就為大家分享一篇opencv3/C++基于顏色的目標(biāo)跟蹤方式,具有很好的參考價值,希望對的有所幫助。一起跟隨小編過來看看吧
    2019-12-12
  • C語言實(shí)現(xiàn)歌手比賽系統(tǒng)

    C語言實(shí)現(xiàn)歌手比賽系統(tǒng)

    這篇文章主要為大家詳細(xì)介紹了C語言實(shí)現(xiàn)歌手比賽系統(tǒng),文中示例代碼介紹的非常詳細(xì),具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2022-05-05
  • C++?requires關(guān)鍵字簡單介紹

    C++?requires關(guān)鍵字簡單介紹

    requires?是?C++20?中引入的一個新關(guān)鍵字,用于在函數(shù)模板或類模板中聲明所需的一組語義要求,它可以用來限制模板參數(shù),類似于?typename?和?class?關(guān)鍵字,這篇文章主要介紹了C++?requires關(guān)鍵字簡介,需要的朋友可以參考下
    2023-05-05
  • C/C++惡意代碼盤點(diǎn)之文件自動刪除

    C/C++惡意代碼盤點(diǎn)之文件自動刪除

    惡意代碼的分類包括計(jì)算機(jī)病毒、蠕蟲、木馬等,有些技術(shù)經(jīng)常用到,有的也是必然用到。今天我們就分享一下文件自動刪除,感興趣的可以了解一下
    2022-09-09
  • C++線程安全的隊(duì)列你了解嘛

    C++線程安全的隊(duì)列你了解嘛

    這篇文章主要為大家詳細(xì)介紹了C++線程安全的隊(duì)列,文中示例代碼介紹的非常詳細(xì),具有一定的參考價值,感興趣的小伙伴們可以參考一下,希望能夠給你帶來幫助
    2022-03-03
  • 基于C++實(shí)現(xiàn)kinect+opencv 獲取深度及彩色數(shù)據(jù)

    基于C++實(shí)現(xiàn)kinect+opencv 獲取深度及彩色數(shù)據(jù)

    本文的主要思想是Kinect SDK 讀取彩色、深度、骨骼信息并用OpenCV顯示,非常的實(shí)用,有需要的小伙伴可以參考下
    2015-12-12

最新評論