Home
last modified time | relevance | path

Searched refs:Point3i (Results 1 – 8 of 8) sorted by relevance

/external/opencv3/modules/java/generator/src/cpp/
Dconverters.h26 void Mat_to_vector_Point3i(cv::Mat& mat, std::vector<cv::Point3i>& v_point);
33 void vector_Point3i_to_Mat(std::vector<cv::Point3i>& v_point, cv::Mat& mat);
Dconverters.cpp122 void Mat_to_vector_Point3i(Mat& mat, std::vector<Point3i>& v_point) in Mat_to_vector_Point3i()
126 v_point = (std::vector<Point3i>) mat; in Mat_to_vector_Point3i()
161 void vector_Point3i_to_Mat(std::vector<Point3i>& v_point, Mat& mat) in vector_Point3i_to_Mat()
/external/opencv3/modules/features2d/src/
Dfast.cpp318 Point3i* pt2 = (Point3i*)(m2.ptr<int>() + 1); in ocl_FAST()
321 std::sort(pt2, pt2 + newcounter, cmp_pt<Point3i>()); in ocl_FAST()
/external/opencv3/modules/calib3d/src/
Dfundam.cpp899 const Point3i* sptr = src.ptr<Point3i>(); in convertPointsFromHomogeneous()
999 Point3i* dptr = dst.ptr<Point3i>(); in convertPointsToHomogeneous()
1001 dptr[i] = Point3i(sptr[i].x, sptr[i].y, 1); in convertPointsToHomogeneous()
1005 const Point3i* sptr = src.ptr<Point3i>(); in convertPointsToHomogeneous()
/external/opencv3/modules/core/test/
Dtest_io.cpp447 Point3i p2(3, 4, 5), op2; in run()
Dtest_mat.cpp702 typedef cv::Point3i Pixel; in run()
/external/opencv3/modules/calib3d/test/
Dtest_cameracalibration_badarg.cpp127 objPts_cpp.at<Point3f>(j, i) = Point3i(i, j, 0); in run()
/external/opencv3/modules/core/include/opencv2/core/
Dtypes.hpp246 typedef Point3_<int> Point3i; typedef