#include <math.h>
#include <iostream>
static void help(char** argv)
{
cout
<< "\n本程序演示了如何使用 findContours 和 drawContours\n"
<< "原始图像与绘制轮廓的图像一起显示\n"
<< "用法:\n";
cout
<< argv[0]
<< "\n一个控制轮廓级别的滑块,从 -3 到 3\n"
<< endl;
}
const int w = 500;
int levels = 3;
vector<vector<Point> > contours;
vector<Vec4i> hierarchy;
static void on_trackbar(int, void*)
{
int _levels = levels - 3;
drawContours( cnt_img, contours, _levels <= 0 ? 3 : -1,
Scalar(128,255,255),
3, LINE_AA, hierarchy,
std::abs(_levels) );
imshow("contours", cnt_img);
}
int main(
int argc,
char** argv)
{
if (parser.has("help"))
{
help(argv);
return 0;
}
for( int i = 0; i < 6; i++ )
{
int dx = (i%2)*250 - 30;
int dy = (i/2)*150;
if( i == 0 )
{
for( int j = 0; j <= 10; j++ )
{
double angle = (j+5)*
CV_PI/21;
}
}
ellipse( img,
Point(dx+150, dy+100),
Size(100,70), 0, 0, 360, white, -1, 8, 0 );
ellipse( img,
Point(dx+115, dy+70),
Size(30,20), 0, 0, 360, black, -1, 8, 0 );
ellipse( img,
Point(dx+185, dy+70),
Size(30,20), 0, 0, 360, black, -1, 8, 0 );
ellipse( img,
Point(dx+115, dy+70),
Size(15,15), 0, 0, 360, white, -1, 8, 0 );
ellipse( img,
Point(dx+185, dy+70),
Size(15,15), 0, 0, 360, white, -1, 8, 0 );
ellipse( img,
Point(dx+115, dy+70),
Size(5,5), 0, 0, 360, black, -1, 8, 0 );
ellipse( img,
Point(dx+185, dy+70),
Size(5,5), 0, 0, 360, black, -1, 8, 0 );
ellipse( img,
Point(dx+150, dy+100),
Size(10,5), 0, 0, 360, black, -1, 8, 0 );
ellipse( img,
Point(dx+150, dy+150),
Size(40,10), 0, 0, 360, black, -1, 8, 0 );
ellipse( img,
Point(dx+27, dy+100),
Size(20,35), 0, 0, 360, white, -1, 8, 0 );
ellipse( img,
Point(dx+273, dy+100),
Size(20,35), 0, 0, 360, white, -1, 8, 0 );
}
vector<vector<Point> > contours0;
findContours( img, contours0, hierarchy, RETR_TREE, CHAIN_APPROX_SIMPLE);
contours.resize(contours0.size());
for( size_t k = 0; k < contours0.size(); k++ )
on_trackbar(0,0);
return 0;
}
用于命令行解析的类。
定义 utility.hpp:820
用于指定图像或矩形大小的模板类。
定义 types.hpp:335
#define CV_8UC1
定义 interface.h:88
#define CV_8UC3
定义 interface.h:90
int cvRound(double value)
将浮点数四舍五入到最接近的整数。
定义 fast_math.hpp:200
#define CV_PI
定义 cvdef.h:380
Quat< T > cos(const Quat< T > &q)
Quat< T > sin(const Quat< T > &q)
void imshow(const String &winname, InputArray mat)
在指定的窗口中显示图像。
int waitKey(int delay=0)
等待按下键。
void namedWindow(const String &winname, int flags=WINDOW_AUTOSIZE)
创建窗口。
int createTrackbar(const String &trackbarname, const String &winname, int *value, int count, TrackbarCallback onChange=0, void *userdata=0)
创建一个滑块并将其附加到指定的窗口。
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)
绘制一个简单或粗的椭圆弧,或填充一个椭圆扇区。
void line(InputOutputArray img, Point pt1, Point pt2, const Scalar &color, int thickness=1, int lineType=LINE_8, int shift=0)
绘制连接两个点的线段。
void approxPolyDP(InputArray curve, OutputArray approxCurve, double epsilon, bool closed)
用指定的精度逼近多边形曲线。
void findContours(InputArray image, OutputArrayOfArrays contours, OutputArray hierarchy, int mode, int method, Point offset=Point())
在二值图像中查找轮廓。
int main(int argc, char *argv[])
定义 highgui_qt.cpp:3
与磁盘上文件关联的文件存储的“黑盒”表示。
定义 core.hpp:102