Home
last modified time | relevance | path

Searched refs:CV_AA (Results 1 – 15 of 15) sorted by relevance

/external/opencv3/modules/imgcodecs/test/
Dtest_drawing.cpp139 polylines( img, &pts, &n, 1, false, Scalar(0,0,150), 4, CV_AA ); in draw()
187 putText(img, text2, textOrg, FONT_HERSHEY_SIMPLEX, fontScale, color, thickness, CV_AA); in draw()
192 putText(img, text2, textOrg, FONT_HERSHEY_PLAIN, fontScale, color, thickness, CV_AA); in draw()
197 putText(img, text2, textOrg, FONT_HERSHEY_DUPLEX, fontScale, color, thickness, CV_AA); in draw()
201 putText(img, text2, textOrg, FONT_HERSHEY_COMPLEX, fontScale, color, thickness, CV_AA); in draw()
205 putText(img, text2, textOrg, FONT_HERSHEY_TRIPLEX, fontScale, color, thickness, CV_AA); in draw()
210 putText(img, text2, textOrg, FONT_HERSHEY_COMPLEX_SMALL, fontScale, color, thickness, CV_AA); in draw()
214 putText(img, text2, textOrg, FONT_HERSHEY_SCRIPT_SIMPLEX, fontScale, color, thickness, CV_AA); in draw()
218 putText(img, text2, textOrg, FONT_HERSHEY_SCRIPT_COMPLEX, fontScale, color, thickness, CV_AA); in draw()
223 putText(img, text2, textOrg, FONT_ITALIC, fontScale, color, thickness, CV_AA); in draw()
[all …]
/external/opencv3/samples/cpp/tutorial_code/ml/introduction_to_pca/
Dintroduction_to_pca.cpp33 line(img, p, q, colour, 1, CV_AA); in drawAxis()
38 line(img, p, q, colour, 1, CV_AA); in drawAxis()
42 line(img, p, q, colour, 1, CV_AA); in drawAxis()
/external/opencv/cvaux/src/
Dcv3dtracker.cpp364 cvLine(img, prev_pt, pt, color, 1, CV_AA); in DrawEtalon()
369 cvPoint(pt.x + r, pt.y + r), color, 1, CV_AA ); in DrawEtalon()
371 cvPoint(pt.x + r, pt.y - r), color, 1, CV_AA ); in DrawEtalon()
372 cvCircle( img, pt, r+1, color, 1, CV_AA ); in DrawEtalon()
Dcvcalibfilter.cpp564 cvLine( dst, prev_pt, pt, color, 1, CV_AA ); in DrawPoints()
568 cvPoint( pt.x + r, pt.y + r ), color, 1, CV_AA ); in DrawPoints()
571 cvPoint( pt.x + r, pt.y - r), color, 1, CV_AA ); in DrawPoints()
573 cvCircle( dst, pt, r+1, color, 1, CV_AA ); in DrawPoints()
/external/opencv/cxcore/src/
Dcxdrawing.cpp1007 if( line_type < CV_AA ) in icvFillConvexPoly()
1075 if( line_type < CV_AA || y < ymax || y == ymin ) in icvFillConvexPoly()
1190 if( line_type < CV_AA ) in icvCollectPolyEdges()
1569 if( line_type < CV_AA ) in icvThickLine()
1615 if( line_type < CV_AA ) in icvThickLine()
1750 if( line_type == CV_AA && CV_MAT_DEPTH(mat->type) != CV_8U ) in cvLine()
1789 if( line_type == CV_AA && CV_MAT_DEPTH(mat->type) != CV_8U ) in cvRectangle()
1830 if( line_type == CV_AA && CV_MAT_DEPTH(mat->type) != CV_8U ) in cvCircle()
1847 if( thickness > 1 || line_type >= CV_AA ) in cvCircle()
1879 if( line_type == CV_AA && CV_MAT_DEPTH(mat->type) != CV_8U ) in cvEllipse()
[all …]
/external/opencv3/modules/imgproc/src/
Ddrawing.cpp1055 if( line_type < CV_AA ) in FillConvexPoly()
1122 if( line_type < CV_AA || y < ymax || y == ymin ) in FillConvexPoly()
1215 if( line_type < CV_AA ) in CollectPolyEdges()
1569 if( line_type < CV_AA ) in ThickLine()
1615 if( line_type < CV_AA ) in ThickLine()
1666 if( line_type == CV_AA && img.depth() != CV_8U ) in line()
1701 if( lineType == CV_AA && img.depth() != CV_8U ) in rectangle()
1742 if( line_type == CV_AA && img.depth() != CV_8U ) in circle()
1751 if( thickness > 1 || line_type >= CV_AA ) in circle()
1770 if( line_type == CV_AA && img.depth() != CV_8U ) in ellipse()
[all …]
/external/opencv3/samples/cpp/
Dhoughlines.cpp47 line( cdst, pt1, pt2, Scalar(0,0,255), 3, CV_AA); in main()
/external/opencv3/modules/videoio/test/
Dtest_ffmpeg.cpp275 putText(frame, text, Point(50, Center.y), FONT_HERSHEY_SIMPLEX, 5.0, ObjectColor, 5, CV_AA); in GenerateFrame()
276 circle(frame, Center, i + 2, ObjectColor, 2, CV_AA); in GenerateFrame()
/external/opencv/cv/include/
Dcvcompat.h863 cvLine( img, pt1, pt2, cvColorToScalar(color, cvGetElemType(img)), 1, CV_AA, scale );
869 cvCircle( img, center, radius, cvColorToScalar(color, cvGetElemType(img)), 1, CV_AA, scale );
878 cvColorToScalar(color, cvGetElemType(img)), 1, CV_AA, scale );
886 1, CV_AA, scale );
/external/opencv3/modules/imgproc/include/opencv2/imgproc/
Dimgproc_c.h988 #define CV_AA 16 macro
1160 cvInitFont( &font, CV_FONT_HERSHEY_PLAIN, scale, scale, 0, thickness, CV_AA );
/external/opencv/cxcore/include/
Dcxcore.h1283 #define CV_AA 16 macro
1406 cvInitFont( &font, CV_FONT_HERSHEY_PLAIN, scale, scale, 0, thickness, CV_AA );
/external/chromium-trace/catapult/telemetry/telemetry/internal/image_processing/
Dscreen_finder.py823 cv2.FONT_HERSHEY_COMPLEX_SMALL, 1, (255, 255, 0), 1, cv2.CV_AA)
/external/opencv3/modules/imgproc/test/
Dtest_convhull.cpp744 cvPolyLine( img, &bpp, &n, 1, 1, CV_RGB(255,255,0), 1, CV_AA, 0 ); in validate_test_results()
854 cvPolyLine( img, &bpp, &n, 1, 1, CV_RGB(255,255,0), 1, CV_AA, 0 ); in validate_test_results()
/external/opencv3/modules/calib3d/src/
Dcalibinit.cpp1832 line_type = type == CV_8UC1 || type == CV_8UC3 ? CV_AA : 8; in cvDrawChessboardCorners()
/external/opencv/cv/src/
Dcvcalibinit.cpp2018 line_type = type == CV_8UC1 || type == CV_8UC3 ? CV_AA : 8; in cvDrawChessboardCorners()