HomeSort by relevance Sort by last modified time
    Searched defs:Point3_ (Results 1 - 2 of 2) sorted by null

  /external/opencv3/modules/core/include/opencv2/core/
types.hpp 202 //////////////////////////////// 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_
224 Point3_();
225 Point3_(_Tp _x, _Tp _y, _Tp _z);
226 Point3_(const Point3_& pt)
    [all...]
types_c.h 945 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)); }
    [all...]

Completed in 45 milliseconds