int main(
int argc,
char** argv)
{
const char* default_file = "sudoku.png";
const char* filename = argc >=2 ? argv[1] : default_file;
Mat src = imread( samples::findFile( filename ), IMREAD_GRAYSCALE );
printf(" Error opening image\n");
printf(" Program Arguments: [image_name -- default %s] \n", default_file);
return -1;
}
Canny(src, dst, 50, 200, 3);
cvtColor(dst, cdst, COLOR_GRAY2BGR);
vector<Vec2f> lines;
HoughLines(dst, lines, 1,
CV_PI/180, 150, 0, 0 );
for( size_t i = 0; i < lines.size(); i++ )
{
float rho = lines[i][0], theta = lines[i][1];
double a = cos(theta), b = sin(theta);
double x0 = a*rho, y0 = b*rho;
line( cdst, pt1, pt2,
Scalar(0,0,255), 3, LINE_AA);
}
vector<Vec4i> linesP;
HoughLinesP(dst, linesP, 1,
CV_PI/180, 50, 50, 10 );
for( size_t i = 0; i < linesP.size(); i++ )
{
line( cdstP,
Point(l[0], l[1]),
Point(l[2], l[3]),
Scalar(0,0,255), 3, LINE_AA);
}
imshow("Source", src);
imshow("Detected Lines (in red) - Standard Hough Line Transform", cdst);
imshow("Detected Lines (in red) - Probabilistic Line Transform", cdstP);
waitKey();
return 0;
}
CV_NODISCARD_STD Mat clone() const
创建数组和底层数据的完整副本。
bool empty() const
如果数组没有元素,则返回 true。
_Tp y
点的 y 坐标
定义 types.hpp:202
_Tp x
点的 x 坐标
定义 types.hpp:201
用于短数值向量的模板类,Matx 的特例。
定义 matx.hpp:369
int cvRound(double value)
将浮点数四舍五入到最接近的整数。
定义 fast_math.hpp:200
#define CV_PI
定义 cvdef.h:380
int main(int argc, char *argv[])
定义 highgui_qt.cpp:3
与磁盘上文件关联的文件存储的“黑盒”表示。
定义 core.hpp:102