Searched defs:Point3_ (Results 1 - 2 of 2) sorted by relevance

/external/opencv3/modules/core/include/opencv2/core/
H A Dtypes.hpp202 //////////////////////////////// Point3_ ////////////////////////////////
210 The following Point3_\<\> aliases are available:
212 typedef Point3_<int> Point3i;
213 typedef Point3_<float> Point3f;
214 typedef Point3_<double> Point3d;
218 template<typename _Tp> class Point3_ class in namespace:cv
224 Point3_();
225 Point3_(_Tp _x, _Tp _y, _Tp _z);
226 Point3_(const Point3_
1304 Point3_<_Tp>::Point3_() function in class:cv::Point3_
1308 Point3_<_Tp>::Point3_(_Tp _x, _Tp _y, _Tp _z) function in class:cv::Point3_
1312 Point3_<_Tp>::Point3_(const Point3_& pt) function in class:cv::Point3_
1316 Point3_<_Tp>::Point3_(const Point_<_Tp>& pt) function in class:cv::Point3_
1320 Point3_<_Tp>::Point3_(const Vec<_Tp, 3>& v) function in class:cv::Point3_
[all...]
H A Dtypes_c.h945 CvPoint3D32f(const cv::Point3_<_Tp>& pt): x((float)pt.x), y((float)pt.y), z((float)pt.z) {}
947 operator cv::Point3_<_Tp>() const { return cv::Point3_<_Tp>(cv::saturate_cast<_Tp>(x), cv::saturate_cast<_Tp>(y), cv::saturate_cast<_Tp>(z)); }

Completed in 179 milliseconds