HomeSort by relevance Sort by last modified time
    Searched refs:cvPoint3D32f (Results 1 - 4 of 4) sorted by null

  /external/opencv/cvaux/src/
cv3dtracker.cpp 59 static void FillObjectPoints(CvPoint3D32f *obj_points, CvSize etalon_size, float square_size);
64 static CvPoint3D32f ImageCStoWorldCS(const Cv3dTrackerCameraInfo &camera_info, CvPoint2D32f p);
65 static bool intersection(CvPoint3D32f o1, CvPoint3D32f p1,
66 CvPoint3D32f o2, CvPoint3D32f p2,
67 CvPoint3D32f &r1, CvPoint3D32f &r2);
82 CvPoint3D32f *object_points = NULL; // real-world coordinates of checkerboard points
127 CV_CALL(object_points = (CvPoint3D32f *)cvAlloc(num_points * sizeof(CvPoint3D32f)))
    [all...]
cvcalibfilter.cpp 264 CvPoint3D32f* buffer =
265 (CvPoint3D32f*)cvAlloc( n * etalonPointCount * sizeof(buffer[0]));
278 buffer[i * etalonPointCount + j] = cvPoint3D32f( etalonPoints[j].x,
  /external/opencv/cxcore/include/
cxtypes.h 963 typedef struct CvPoint3D32f
969 CvPoint3D32f;
972 CV_INLINE CvPoint3D32f cvPoint3D32f( double x, double y, double z )
974 CvPoint3D32f p;
    [all...]
  /external/opencv3/modules/core/include/opencv2/core/
types_c.h 936 typedef struct CvPoint3D32f
943 CvPoint3D32f(float _x = 0, float _y = 0, float _z = 0): x(_x), y(_y), z(_z) {}
945 CvPoint3D32f(const cv::Point3_<_Tp>& pt): x((float)pt.x), y((float)pt.y), z((float)pt.z) {}
950 CvPoint3D32f;
952 /** constructs CvPoint3D32f structure. */
953 CV_INLINE CvPoint3D32f cvPoint3D32f( double x, double y, double z )
955 CvPoint3D32f p;
    [all...]

Completed in 603 milliseconds