Searched refs:Point_ (Results 1 – 15 of 15) sorted by relevance
/external/opencv3/modules/core/include/opencv2/core/ |
D | types.hpp | 147 template<typename _Tp> class Point_ class 153 Point_(); 154 Point_(_Tp _x, _Tp _y); 155 Point_(const Point_& pt); 156 Point_(const Size_<_Tp>& sz); 157 Point_(const Vec<_Tp, 2>& v); 159 Point_& operator = (const Point_& pt); 161 template<typename _Tp2> operator Point_<_Tp2>() const; 167 _Tp dot(const Point_& pt) const; 169 double ddot(const Point_& pt) const; [all …]
|
D | cvstd.inl.hpp | 187 std::ostream& operator << (std::ostream& out, const std::vector<Point_<_Tp> >& vec) in operator <<() 207 std::ostream& operator << (std::ostream& out, const Point_<_Tp>& p) in operator <<()
|
D | persistence.hpp | 684 …typename _Tp> static inline void read(const FileNode& node, Point_<_Tp>& value, const Point_<_Tp>&… in read() 687 …value = temp.size() != 2 ? default_value : Point_<_Tp>(saturate_cast<_Tp>(temp[0]), saturate_cast<… in read() 856 void write(FileStorage& fs, const Point_<_Tp>& pt ) in write() 925 void write(FileStorage& fs, const String& name, const Point_<_Tp>& pt ) in write()
|
D | types_c.h | 874 CvPoint(const cv::Point_<_Tp>& pt): x((int)pt.x), y((int)pt.y) {} in CvPoint() 876 …operator cv::Point_<_Tp>() const { return cv::Point_<_Tp>(cv::saturate_cast<_Tp>(x), cv::saturate_… 901 CvPoint2D32f(const cv::Point_<_Tp>& pt): x((float)pt.x), y((float)pt.y) {} in CvPoint2D32f() 903 …operator cv::Point_<_Tp>() const { return cv::Point_<_Tp>(cv::saturate_cast<_Tp>(x), cv::saturate_…
|
D | mat.hpp | 914 template<typename _Tp> explicit Mat(const Point_<_Tp>& pt, bool copyData=true); 1986 explicit Mat_(const Point_<typename DataType<_Tp>::channel_type>& pt, bool copyData=true); 2150 template<typename _Tp> explicit UMat(const Point_<_Tp>& pt, bool copyData=true);
|
D | base.hpp | 593 template<typename _Tp> class Point_;
|
D | operations.hpp | 400 int print(const std::vector<Point_<_Tp> >& vec, FILE* stream = stdout) in print()
|
D | mat.inl.hpp | 505 Mat::Mat(const Point_<_Tp>& pt, bool copyData) in Mat() 1291 Mat_<_Tp>::Mat_(const Point_<typename DataType<_Tp>::channel_type>& pt, bool copyData) in Mat_()
|
/external/opencv3/modules/imgproc/test/ |
D | test_boundingrect.cpp | 63 template <typename T> void generate_src_points(vector <Point_<T> >& src, int n); 64 template <typename T> cv::Rect get_bounding_rect(const vector <Point_<T> > src); 65 template <typename T> bool checking_function_work(vector <Point_<T> >& src, int type); 71 template <typename T> void CV_BoundingRectTest::generate_src_points(vector <Point_<T> >& src, int n) in generate_src_points() 75 src.push_back(Point_<T>(cv::randu<T>(), cv::randu<T>())); in generate_src_points() 78 template <typename T> cv::Rect CV_BoundingRectTest::get_bounding_rect(const vector <Point_<T> > src) in get_bounding_rect() 95 template <typename T> bool CV_BoundingRectTest::checking_function_work(vector <Point_<T> >& src, in… in checking_function_work()
|
/external/opencv3/modules/imgproc/src/ |
D | convhull.cpp | 49 static int Sklansky_( Point_<_Tp>** array, int start, int end, int* stack, int nsign, int sign2 ) in Sklansky_() 124 bool operator()(const Point_<_Tp>* p1, const Point_<_Tp>* p2) const in operator ()() 341 static bool isContourConvex_( const Point_<_Tp>* p, int n ) in isContourConvex_() 343 Point_<_Tp> prev_pt = p[(n-2+n) % n]; in isContourConvex_() 344 Point_<_Tp> cur_pt = p[n-1]; in isContourConvex_()
|
D | approx.cpp | 476 approxPolyDP_( const Point_<T>* src_contour, int count0, Point_<T>* dst_contour, in approxPolyDP_() 499 typedef cv::Point_<T> PT; in approxPolyDP_()
|
/external/opencv3/modules/shape/test/ |
D | test_shape.cpp | 51 typedef Point_<T> PointType;
|
/external/opencv3/modules/core/test/ |
D | test_io.cpp | 446 Point_<float> p1(1.1f, 2.2f), op1; in run()
|
/external/opencv3/modules/calib3d/src/ |
D | stereosgbm.cpp | 974 typedef cv::Point_<short> Point2s;
|
D | stereobm.cpp | 1135 bufSize2 = width*height*(sizeof(Point_<short>) + sizeof(int) + sizeof(uchar)); in compute()
|