Home
last modified time | relevance | path

Searched refs:npts (Results 1 – 9 of 9) sorted by relevance

/external/opencv3/modules/viz/src/vtk/
DvtkOBJWriter.cpp130 vtkIdType npts = 0, *index = 0; in WriteData() local
132 for (cells->InitTraversal(); cells->GetNextCell(npts, index); ) in WriteData()
135 for (int i = 0; i < npts; i++) in WriteData()
144 vtkIdType npts = 0, *index = 0; in WriteData() local
146 for (cells->InitTraversal(); cells->GetNextCell(npts, index); ) in WriteData()
151 for (int i = 0; i < npts; i++) in WriteData()
155 for (int i = 0; i < npts; i++) in WriteData()
165 vtkIdType npts = 0, *index = 0; in WriteData() local
167 for (cells->InitTraversal(); cells->GetNextCell(npts, index); ) in WriteData()
170 for (int i = 0; i < npts; i++) in WriteData()
[all …]
/external/opencv3/modules/imgproc/src/
Ddrawing.cpp61 CollectPolyEdges( Mat& img, const Point* v, int npts,
69 PolyLine( Mat& img, const Point* v, int npts, bool closed,
73 FillConvexPoly( Mat& img, const Point* v, int npts,
1036 FillConvexPoly( Mat& img, const Point* v, int npts, const void* color, int line_type, int shift ) in FillConvexPoly() argument
1047 int edges = npts; in FillConvexPoly()
1060 p0 = v[npts - 1]; in FillConvexPoly()
1068 for( i = 0; i < npts; i++ ) in FillConvexPoly()
1108 if( npts < 3 || xmax < 0 || ymax < 0 || xmin >= size.width || ymin >= size.height ) in FillConvexPoly()
1116 edge[1].di = npts - 1; in FillConvexPoly()
1138 idx -= ((idx < npts) - 1) & npts; /* idx -= idx >= npts ? npts : 0 */ in FillConvexPoly()
[all …]
/external/opencv/cxcore/src/
Dcxdrawing.cpp73 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()
[all …]
/external/opencv3/modules/python/test/
Dcamera_calibration.py241 npts = cv.CreateMat(nimages, 1, cv.CV_32SC1)
243 npts[i, 0] = num_pts
244 return npts
335 npts = mk_point_counts(len(goodcorners)) variable
344 cv.CalibrateCamera2(opts, ipts, npts,
/external/skia/samplecode/
DSamplePatch.cpp134 int i, npts = (nu + nv) * 2; in draw() local
135 SkAutoSTMalloc<16, SkPoint> storage(npts + 1); in draw()
148 for (i = 0; i < npts; i++) { in draw()
/external/opencv3/modules/imgproc/include/opencv2/imgproc/
Dimgproc_c.h1051 CVAPI(void) cvFillConvexPoly( CvArr* img, const CvPoint* pts, int npts, CvScalar color,
1057 CVAPI(void) cvFillPoly( CvArr* img, CvPoint** pts, const int* npts,
1064 CVAPI(void) cvPolyLine( CvArr* img, CvPoint** pts, const int* npts, int contours,
/external/opencv3/modules/imgproc/include/opencv2/
Dimgproc.hpp3879 CV_EXPORTS void fillConvexPoly(Mat& img, const Point* pts, int npts,
3902 const int* npts, int ncontours,
3924 CV_EXPORTS void polylines(Mat& img, const Point* const* pts, const int* npts,
/external/opencv/cxcore/include/
Dcxcore.h1324 CVAPI(void) cvFillConvexPoly( CvArr* img, CvPoint* pts, int npts, CvScalar color,
1328 CVAPI(void) cvFillPoly( CvArr* img, CvPoint** pts, int* npts, int contours, CvScalar color,
1332 CVAPI(void) cvPolyLine( CvArr* img, CvPoint** pts, int* npts, int contours,
/external/opencv/cv/include/
Dcvcompat.h881 CV_INLINE void cvPolyLineAA( CvArr* img, CvPoint** pts, int* npts, int contours,
884 cvPolyLine( img, pts, npts, contours, is_closed,