Home
last modified time | relevance | path

Searched refs:line_type (Results 1 – 4 of 4) sorted by relevance

/external/opencv/cxcore/src/
Dcxdrawing.cpp62 const void* color, int line_type,
70 const void* color, int thickness, int line_type, int shift );
74 const void* color, int line_type, int shift );
914 const void* color, int thickness, int line_type ) in icvEllipseEx() argument
935 icvPolyLine( img, v, count, 0, color, thickness, line_type, XY_SHIFT ); in icvEllipseEx()
939 icvFillConvexPoly( img, v, count, color, line_type, XY_SHIFT ); in icvEllipseEx()
954 CV_CALL( icvCollectPolyEdges( img, &vtx, edges, color, line_type, XY_SHIFT )); in icvEllipseEx()
988 icvFillConvexPoly( CvMat* img, CvPoint *v, int npts, const void* color, int line_type, int shift ) in icvFillConvexPoly() argument
1007 if( line_type < CV_AA ) in icvFillConvexPoly()
1037 if( line_type <= 8 ) in icvFillConvexPoly()
[all …]
/external/opencv/cxcore/include/
Dcxcore.h1288 int line_type CV_DEFAULT(8), int shift CV_DEFAULT(0) );
1294 int line_type CV_DEFAULT(8),
1301 int line_type CV_DEFAULT(8), int shift CV_DEFAULT(0));
1309 int line_type CV_DEFAULT(8), int shift CV_DEFAULT(0));
1313 int line_type CV_DEFAULT(8), int shift CV_DEFAULT(0) )
1320 0, 360, color, thickness, line_type, shift );
1325 int line_type CV_DEFAULT(8), int shift CV_DEFAULT(0));
1329 int line_type CV_DEFAULT(8), int shift CV_DEFAULT(0) );
1334 int line_type CV_DEFAULT(8), int shift CV_DEFAULT(0) );
1392 int line_type; member
[all …]
/external/opencv/cv/src/
Dcvcalibinit.cpp1993 int type, cn, line_type; in cvDrawChessboardCorners() local
2018 line_type = type == CV_8UC1 || type == CV_8UC3 ? CV_AA : 8; in cvDrawChessboardCorners()
2036 cvPoint( pt.x + r, pt.y + r ), color, 1, line_type, shift ); in cvDrawChessboardCorners()
2038 cvPoint( pt.x + r, pt.y - r), color, 1, line_type, shift ); in cvDrawChessboardCorners()
2039 cvCircle( image, pt, r+(1<<shift), color, 1, line_type, shift ); in cvDrawChessboardCorners()
2075 cvLine( image, prev_pt, pt, color, 1, line_type, shift ); in cvDrawChessboardCorners()
2078 cvPoint(pt.x + r, pt.y + r), color, 1, line_type, shift ); in cvDrawChessboardCorners()
2080 cvPoint(pt.x + r, pt.y - r), color, 1, line_type, shift ); in cvDrawChessboardCorners()
2081 cvCircle( image, pt, r+(1<<shift), color, 1, line_type, shift ); in cvDrawChessboardCorners()
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
Dwebrtcsdp.cc415 const char line_type, in ParseFailedExpectLine() argument
419 description << "Expect line: " << line_type << "=" << line_value; in ParseFailedExpectLine()