Lines Matching refs:npts
73 icvFillConvexPoly( CvMat* img, CvPoint* v, int npts,
988 icvFillConvexPoly( CvMat* img, CvPoint *v, int npts, const void* color, int line_type, int shift ) in icvFillConvexPoly() argument
999 int edges = npts; in icvFillConvexPoly()
1013 p0 = v[npts - 1]; in icvFillConvexPoly()
1021 for( i = 0; i < npts; i++ ) in icvFillConvexPoly()
1061 if( npts < 3 || xmax < 0 || ymax < 0 || xmin >= size.width || ymin >= size.height ) in icvFillConvexPoly()
1069 edge[1].di = npts - 1; in icvFillConvexPoly()
1091 idx -= ((idx < npts) - 1) & npts; /* idx -= idx >= npts ? npts : 0 */ in icvFillConvexPoly()
1914 cvFillConvexPoly( void *img, CvPoint *pts, int npts, CvScalar color, int line_type, int shift ) in cvFillConvexPoly() argument
1935 if( npts <= 0 ) in cvFillConvexPoly()
1942 icvFillConvexPoly( mat, pts, npts, buf, line_type, shift ); in cvFillConvexPoly()
1949 cvFillPoly( void *img, CvPoint **pts, int *npts, int contours, in cvFillPoly() argument
1976 if( npts <= 0 ) in cvFillPoly()
1998 if( npts[i] < 0 ) in cvFillPoly()
2002 pts[i], npts[i], &vtx, &block ); in cvFillPoly()
2018 cvPolyLine( void *img, CvPoint **pts, int *npts, in cvPolyLine() argument
2047 if( npts <= 0 ) in cvPolyLine()
2056 icvPolyLine( mat, pts[i], npts[i], closed, buf, thickness, line_type, shift ); in cvPolyLine()