Update imgproc.hpp

This commit is contained in:
Suleyman TURKMEN
2015-06-11 11:46:42 +03:00
parent dac715ad1f
commit caa0058d5b

View File

@@ -1690,7 +1690,7 @@ See the line detection example below:
using namespace cv; using namespace cv;
using namespace std; using namespace std;
int main(int argc, char** argv) int main(int argc, char** argv)
{ {
Mat src, dst, color_dst; Mat src, dst, color_dst;
@@ -1776,7 +1776,7 @@ Example: :
using namespace cv; using namespace cv;
using namespace std; using namespace std;
int main(int argc, char** argv) int main(int argc, char** argv)
{ {
Mat img, gray; Mat img, gray;
@@ -1799,7 +1799,7 @@ Example: :
} }
namedWindow( "circles", 1 ); namedWindow( "circles", 1 );
imshow( "circles", img ); imshow( "circles", img );
waitKey(0); waitKey(0);
return 0; return 0;
} }