/external/opencv3/samples/cpp/ |
polar_transforms.cpp | 59 cvLogPolar(frame,log_polar_img,cvPoint2D32f(frame->width >> 1,frame->height >> 1),70, CV_INTER_LINEAR+CV_WARP_FILL_OUTLIERS); 60 cvLinearPolar(frame,lin_polar_img,cvPoint2D32f(frame->width >> 1,frame->height >> 1),70, CV_INTER_LINEAR+CV_WARP_FILL_OUTLIERS); 63 cvLogPolar(log_polar_img,recovered_img,cvPoint2D32f(frame->width >> 1,frame->height >> 1),70, CV_WARP_INVERSE_MAP+CV_INTER_LINEAR); 65 cvLinearPolar(lin_polar_img,recovered_img,cvPoint2D32f(frame->width >> 1,frame->height >> 1),70, CV_WARP_INVERSE_MAP+CV_INTER_LINEAR+CV_WARP_FILL_OUTLIERS);
|
/external/opencv/cv/src/ |
cvsubdivision2d.cpp | 109 cvSubdiv2DAddPoint( CvSubdiv2D * subdiv, CvPoint2D32f pt, int is_virtual ) 240 icvIsRightOf( CvPoint2D32f& pt, CvSubdiv2DEdge edge ) 251 cvSubdiv2DLocate( CvSubdiv2D * subdiv, CvPoint2D32f pt, 350 CvPoint2D32f org_pt = cvSubdiv2DEdgeOrg( edge )->pt; 351 CvPoint2D32f dst_pt = cvSubdiv2DEdgeDst( edge )->pt; 396 icvIsPtInCircle3( CvPoint2D32f pt, CvPoint2D32f a, CvPoint2D32f b, CvPoint2D32f c ) 408 cvSubdivDelaunay2DInsert( CvSubdiv2D * subdiv, CvPoint2D32f pt [all...] |
cvcamshift.cpp | 293 box->center = cvPoint2D32f( comp.rect.x + comp.rect.width*0.5f,
|
cvsurf.cpp | 232 CvSURFPoint point = cvSURFPoint( cvPoint2D32f(j*scale/9.f, i*scale/9.f), 358 CvPoint2D32f center = kp->pt;
|
cvshapedescr.cpp | 106 CvPoint2D32f* pt = (CvPoint2D32f*)reader.ptr; 107 CvPoint2D32f* prev_pt = (CvPoint2D32f*)reader.prev_elem; 134 icvFindCircle( CvPoint2D32f pt0, CvPoint2D32f pt1, 135 CvPoint2D32f pt2, CvPoint2D32f * center, float *radius ) 166 CV_INLINE double icvIsPtInCircle( CvPoint2D32f pt, CvPoint2D32f center, float radius [all...] |
/external/opencv/cvaux/src/ |
cvepilines.cpp | [all...] |
cvcalibfilter.cpp | 96 int pointCount, CvPoint2D32f* points ) 153 etalonPoints = (CvPoint2D32f*)cvAlloc( arrSize ); 171 etalonPoints[k++] = cvPoint2D32f( (etalonWidth - 1 - x)*params[2], 193 int* pointCount, const CvPoint2D32f** points ) const 368 latestPoints[i] = (CvPoint2D32f*) 437 bool CvCalibFilter::Push( const CvPoint2D32f** pts ) 449 pts = (const CvPoint2D32f**)latestPoints; 462 CvPoint2D32f* prev = points[i]; 464 points[i] = (CvPoint2D32f*)cvAlloc( newMaxPoints * sizeof(prev[0])); 483 bool CvCalibFilter::GetLatestPoints( int idx, CvPoint2D32f** pts [all...] |
/external/opencv/cxcore/include/ |
cxtypes.h | 928 typedef struct CvPoint2D32f 933 CvPoint2D32f; 936 CV_INLINE CvPoint2D32f cvPoint2D32f( double x, double y ) 938 CvPoint2D32f p; 947 CV_INLINE CvPoint2D32f cvPointTo32f( CvPoint point ) 949 return cvPoint2D32f( (float)point.x, (float)point.y ); 953 CV_INLINE CvPoint cvPointFrom32f( CvPoint2D32f point ) 1063 CvPoint2D32f center; /* Center of the box. */ [all...] |
/external/opencv3/modules/core/include/opencv2/core/ |
types_c.h | 893 typedef struct CvPoint2D32f 899 CvPoint2D32f(float _x = 0, float _y = 0): x(_x), y(_y) {} 901 CvPoint2D32f(const cv::Point_<_Tp>& pt): x((float)pt.x), y((float)pt.y) {} 906 CvPoint2D32f; 908 /** constructs CvPoint2D32f structure. */ 909 CV_INLINE CvPoint2D32f cvPoint2D32f( double x, double y ) 911 CvPoint2D32f p; 919 /** converts CvPoint to CvPoint2D32f. */ 920 CV_INLINE CvPoint2D32f cvPointTo32f( CvPoint point [all...] |
/external/opencv/cvaux/include/ |
cvvidsurv.hpp | 442 #define CV_BLOB_CENTER(pB) cvPoint2D32f(((CvBlob*)(pB))->x,((CvBlob*)(pB))->y) [all...] |
/external/opencv3/modules/imgproc/test/ |
test_imgwarp.cpp | 513 CvPoint2D32f center; [all...] |
/external/opencv3/modules/calib3d/src/ |
calibration.cpp | [all...] |