HomeSort by relevance Sort by last modified time
    Searched refs:Point2f (Results 51 - 75 of 150) sorted by null

1 23 4 5 6

  /external/opencv3/modules/cudalegacy/test/
test_calib3d.cpp 131 std::vector<cv::Point2f> dst_gold;
140 cv::Point2f res = h_dst.at<cv::Point2f>(0, (int)i);
141 cv::Point2f res_gold = dst_gold[i];
173 std::vector<cv::Point2f> image_vec;
  /external/opencv3/samples/cpp/tutorial_code/features2D/AKAZE_tracking/
planar_tracking.cpp 28 void setFirstFrame(const Mat frame, vector<Point2f> bb, string title, Stats& stats);
38 vector<Point2f> object_bb;
41 void Tracker::setFirstFrame(const Mat frame, vector<Point2f> bb, string title, Stats& stats)
95 vector<Point2f> new_bb;
131 vector<Point2f> bb;
  /external/opencv3/samples/gpu/
pyrlk_optical_flow.cpp 16 static void download(const GpuMat& d_mat, vector<Point2f>& vec)
30 static void drawArrows(Mat& frame, const vector<Point2f>& prevPts, const vector<Point2f>& nextPts, const vector<uchar>& status, Scalar line_color = Scalar(0, 0, 255))
164 vector<Point2f> prevPts(d_prevPts.cols);
167 vector<Point2f> nextPts(d_nextPts.cols);
  /external/opencv3/modules/imgproc/include/opencv2/
imgproc.hpp 141 \f$\texttt{Point}(x,y)\rightarrow\texttt{Point2f}(x*2^{-shift},y*2^{-shift})\f$ . This feature is
    [all...]
  /external/opencv3/modules/calib3d/perf/
perf_pnp.cpp 30 vector<Point2f> points2d(pointsNum);
77 vector<Point2f> points2d(pointsNum);
128 vector<cv::Point2f> image_vec;
perf_cicrlesGrid.cpp 32 vector<Point2f> ptvec;
  /external/opencv3/modules/video/perf/
perf_optflowpyrlk.cpp 12 void FormTrackingPointsArray(vector<Point2f>& points, int width, int height, int nPointsX, int nPointsY)
25 Point2f pt(static_cast<float>(x), static_cast<float>(y));
76 vector<Point2f> inPoints;
77 vector<Point2f> outPoints;
150 vector<Point2f> inPoints;
151 vector<Point2f> outPoints;
  /external/opencv3/modules/calib3d/test/
test_chesscorners_badarg.cpp 65 vector<Point2f> corners;
111 vector<Point2f> exp_corn;
test_cornerssubpix.cpp 65 int calcDistance(const vector<Point2f>& set1, const vector<Point2f>& set2, double& mean_dist)
153 vector<Point2f> corners;
156 vector<Point2f> test_corners;
  /external/opencv3/modules/cudaimgproc/test/
test_gftt.cpp 86 std::vector<cv::Point2f> pts(d_pts.cols);
90 std::vector<cv::Point2f> pts_gold;
  /external/opencv3/modules/features2d/src/
gftt.cpp 78 std::vector<Point2f> corners;
102 std::vector<Point2f>::const_iterator corner_it = corners.begin();
evaluation.cpp 83 static inline Point2f applyHomography( const Mat_<double>& H, const Point2f& pt )
89 return Point2f( (float)((H(0,0)*pt.x + H(0,1)*pt.y + H(0,2))*w), (float)((H(1,0)*pt.x + H(1,1)*pt.y + H(1,2))*w) );
91 return Point2f( std::numeric_limits<float>::max(), std::numeric_limits<float>::max() );
94 static inline void linearizeHomographyAt( const Mat_<double>& H, const Point2f& pt, Mat_<double>& A )
117 EllipticKeyPoint( const Point2f& _center, const Scalar& _ellipse );
128 Point2f center;
136 *this = EllipticKeyPoint(Point2f(0,0), Scalar(1, 0, 1) );
139 EllipticKeyPoint::EllipticKeyPoint( const Point2f& _center, const Scalar& _ellipse )
171 Point2f dstCenter = applyHomography(H, center)
    [all...]
  /external/opencv3/modules/imgproc/test/ocl/
test_gftt.cpp 85 void UMatToVector(const UMat & um, std::vector<Point2f> & v) const
101 std::vector<Point2f> upts, pts;
  /external/opencv3/samples/cpp/tutorial_code/ShapeDescriptors/
moments_demo.cpp 69 vector<Point2f> mc( contours.size() );
71 { mc[i] = Point2f( static_cast<float>(mu[i].m10/mu[i].m00) , static_cast<float>(mu[i].m01/mu[i].m00) ); }
pointPolygonTest_demo.cpp 26 vector<Point2f> vert(6);
50 { raw_dist.at<float>(j,i) = (float)pointPolygonTest( contours[0], Point2f((float)i,(float)j), true ); }
  /external/opencv3/samples/cpp/tutorial_code/calib3d/real_time_pose_estimation/src/
PnPProblem.cpp 110 const std::vector<cv::Point2f> &list_points2d,
136 const std::vector<cv::Point2f> &list_points2d, // list with scene 2D coordinates
159 std::vector<cv::Point2f> PnPProblem::verify_points(Mesh *mesh)
161 std::vector<cv::Point2f> verified_points_2d;
165 cv::Point2f point2d = this->backproject3DPoint(point3d);
175 cv::Point2f PnPProblem::backproject3DPoint(const cv::Point3f &point3d)
189 cv::Point2f point2d;
197 bool PnPProblem::backproject2DPoint(const Mesh *mesh, const cv::Point2f &point2d, cv::Point3f &point3d)
Utils.cpp 76 void drawPoints(cv::Mat image, std::vector<cv::Point2f> &list_points_2d, std::vector<cv::Point3f> &list_points_3d, cv::Scalar color)
80 cv::Point2f point_2d = list_points_2d[i];
99 void draw2DPoints(cv::Mat image, std::vector<cv::Point2f> &list_points, cv::Scalar color)
103 cv::Point2f point_2d = list_points[i];
131 void draw3DCoordinateAxes(cv::Mat image, const std::vector<cv::Point2f> &list_points2d)
162 cv::Point2f point_2d_0 = pnpProblem->backproject3DPoint(point_3d_0);
163 cv::Point2f point_2d_1 = pnpProblem->backproject3DPoint(point_3d_1);
164 cv::Point2f point_2d_2 = pnpProblem->backproject3DPoint(point_3d_2);
  /external/opencv3/modules/imgproc/perf/
perf_goodFeaturesToTrack.cpp 32 std::vector<Point2f> corners;
  /external/opencv3/modules/imgproc/src/
cornersubpix.cpp 57 Point2f* corners = cornersmat.ptr<Point2f>();
96 Point2f cT = corners[pt_i], cI = cT;
102 Point2f cI2;
intersection.cpp 54 Point2f vec1[4], vec2[4];
55 Point2f pts1[4], pts2[4];
57 std::vector <Point2f> intersection;
134 intersection.push_back(Point2f(xi,yi));
  /external/opencv3/modules/stitching/test/
test_matchers.cpp 64 Point2f pt = roi_features.keypoints[i].pt;
  /external/opencv3/modules/video/perf/opencl/
perf_optflow_pyrlk.cpp 86 vector<Point2f> pts;
  /external/opencv3/modules/videostab/src/
outlier_rejection.cpp 78 const Point2f* points0_ = points0.getMat().ptr<Point2f>();
79 const Point2f* points1_ = points1.getMat().ptr<Point2f>();
  /external/opencv3/samples/cpp/
fitellipse.cpp 88 Point2f vtx[4];
kmeans.cpp 65 Point ipt = points.at<Point2f>(i);

Completed in 134 milliseconds

1 23 4 5 6