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

1 2 34 5 6

  /external/opencv3/samples/cpp/tutorial_code/TrackingMotion/
cornerSubPix_Demo.cpp 61 vector<Point2f> corners;
goodFeaturesToTrack_Demo.cpp 61 vector<Point2f> corners;
  /external/opencv3/samples/tapi/
pyrlk_optical_flow.cpp 33 static void drawArrows(UMat& _frame, const vector<Point2f>& prevPts, const vector<Point2f>& nextPts, const vector<uchar>& status,
112 vector<cv::Point2f> pts(points);
113 vector<cv::Point2f> nextPts(points);
  /external/opencv3/modules/java/generator/src/cpp/
converters.cpp 105 void Mat_to_vector_Point2f(Mat& mat, std::vector<Point2f>& v_point)
109 v_point = (std::vector<Point2f>) mat;
151 void vector_Point2f_to_Mat(std::vector<Point2f>& v_point, Mat& mat)
220 void Mat_to_vector_vector_Point2f(Mat& mat, std::vector< std::vector< Point2f > >& vv_pt)
227 std::vector<Point2f> vpt;
285 void vector_vector_Point2f_to_Mat(std::vector< std::vector< Point2f > >& vv_pt, Mat& mat)
  /external/opencv3/modules/objdetect/src/
detection_based_tracker.cpp 103 static inline cv::Point2f centerRect(const cv::Rect& r)
105 return cv::Point2f(r.x+((float)r.width)/2, r.y+((float)r.height)/2);
110 cv::Point2f m=centerRect(r);
661 Point2f center = centerRect(r);
662 Point2f center_prev = centerRect(trackedObjects[i].lastPositions[n-2]);
663 Point2f shift = (center - center_prev) * innerParameters.coeffObjectSpeedUsingInPrediction;
    [all...]
  /external/opencv3/modules/calib3d/test/
test_undistort_points.cpp 69 vector<Point2f> projectedPoints;
78 vector<Point2f> realUndistortedPoints;
test_solvepnp_ransac.cpp 129 vector<Point2f> projectedPoints;
236 vector<Point2f> projectedPoints;
273 vector<cv::Point2f> image_vec;
324 std::vector<cv::Point2f> points2dF;
360 vector<Point2f> p2d;
test_cameracalibration_artificial.cpp 232 vector<Point2f> uv_exp, uv_est;
250 vector< vector<Point2f> > imagePoints_art;
251 vector< vector<Point2f> > imagePoints_findCb;
272 vector<Point2f> corners_art, corners_fcb;
298 vector< vector<Point2f> > imagePoints;
310 vector<Point2f> tmp = imagePoints_findCb[i];
320 vector<Point2f> tmp = imagePoints_findCb[i];
  /external/opencv3/modules/stitching/include/opencv2/stitching/detail/
warpers.hpp 71 virtual Point2f warpPoint(const Point2f &pt, InputArray K, InputArray R) = 0;
144 Point2f warpPoint(const Point2f &pt, InputArray K, InputArray R);
189 Point2f warpPoint(const Point2f &pt, InputArray K, InputArray R);
190 Point2f warpPoint(const Point2f &pt, InputArray K, InputArray R, InputArray T);
  /external/opencv3/samples/cpp/
calibration.cpp 87 const vector<vector<Point2f> >& imagePoints,
92 vector<Point2f> imagePoints2;
137 static bool runCalibration( vector<vector<Point2f> > imagePoints,
176 const vector<vector<Point2f> >& imagePoints,
268 const vector<vector<Point2f> >& imagePoints,
291 writePoints ? imagePoints : vector<vector<Point2f> >(),
317 vector<vector<Point2f> > imagePoints;
466 vector<Point2f> pointbuf;
select3dobj.cpp 115 static Point3f image2plane(Point2f imgpt, const Mat& R, const Mat& tvec,
134 vector<Point2f> imgpt;
207 vector<Point2f> imgpt(4), tempimg(8);
224 Point2f m = mouse.pt;
252 Point2f a = imgpt[nearestIdx], b = tempimg[0], d1 = b - a, d2 = m - a;
559 vector<Point2f> foundBoardCorners;
  /external/opencv3/samples/cpp/tutorial_code/calib3d/camera_calibration/
camera_calibration.cpp 222 vector<vector<Point2f> > imagePoints );
250 vector<vector<Point2f> > imagePoints;
287 vector<Point2f> pointBuf;
407 const vector<vector<Point2f> >& imagePoints,
412 vector<Point2f> imagePoints2;
457 vector<vector<Point2f> > imagePoints, vector<Mat>& rvecs, vector<Mat>& tvecs,
489 const vector<float>& reprojErrs, const vector<vector<Point2f> >& imagePoints,
566 vector<vector<Point2f> > imagePoints)
  /external/opencv3/samples/gpu/
generalized_hough.cpp 162 Point2f pos(position[i][0], position[i][1]);
171 Point2f pts[4];
optical_flow.cpp 14 inline bool isFlowCorrect(Point2f u)
104 Point2f u(flowx(y, x), flowy(y, x));
118 Point2f u(flowx(y, x), flowy(y, x));
  /external/opencv3/modules/calib3d/src/
solvepnp.cpp 191 const Point2f* ipoints_ptr = ipoints.ptr<Point2f>();
192 const Point2f* projpoints_ptr = projpoints.ptr<Point2f>();
  /external/opencv3/samples/cpp/tutorial_code/ShapeDescriptors/
generalContours_demo1.cpp 66 vector<Point2f>center( contours.size() );
generalContours_demo2.cpp 83 Point2f rect_points[4]; minRect[i].points( rect_points );
  /external/opencv3/samples/cpp/tutorial_code/calib3d/real_time_pose_estimation/src/
CsvWriter.cpp 28 void CsvWriter::writeUVXYZ(const vector<Point3f> &list_points3d, const vector<Point2f> &list_points2d, const Mat &descriptors)
main_detection.cpp 208 vector<Point2f> list_points2d_scene_match; // container for the model 2D coordinates found in the scene
213 Point2f point2d_scene = keypoints_scene[ good_matches[match_index].queryIdx ].pt; // 2D point from the scene
223 vector<Point2f> list_points2d_inliers;
237 Point2f point2d = list_points2d_scene_match[n]; // i-inlier point 2D
294 vector<Point2f> pose_points2d;
  /external/opencv3/modules/video/test/
test_optflowpyrlk.cpp 231 std::vector<cv::Point2f> prev;
232 std::vector<cv::Point2f> next;
241 prev.push_back(cv::Point2f((float)x, (float)y));
  /external/opencv3/modules/videostab/include/opencv2/videostab/
global_motion.hpp 248 std::vector<Point2f> pointsPrev_, points_;
249 std::vector<Point2f> pointsPrevGood_, pointsGood_;
279 std::vector<Point2f> hostPointsPrevTmp_, hostPointsTmp_;
  /external/opencv3/modules/shape/src/
sc_dis.cpp 288 Point2f p = sset1.at<Point2f>(0,pt);
411 disMatrix.at<float>(i,j) = (float)norm( cv::Mat(contourMat.at<cv::Point2f>(0,i)-contourMat.at<cv::Point2f>(0,j)), cv::NORM_L2 );
442 cv::Point2f massCenter(0,0);
447 massCenter+=contourMat.at<cv::Point2f>(0,i);
464 cv::Point2f dif = contourMat.at<cv::Point2f>(0,i) - contourMat.at<cv::Point2f>(0,j);
469 cv::Point2f refPt = contourMat.at<cv::Point2f>(0,i) - massCenter
    [all...]
  /external/opencv3/modules/features2d/test/
test_rotation_and_scale_invariance.cpp 91 vector<Point2f> srcCenters, dstCenters;
115 float calcCirclesIntersectArea(const Point2f& p0, float r0, const Point2f& p1, float r1)
141 float calcIntersectRatio(const Point2f& p0, float r0, const Point2f& p1, float r1)
153 vector<Point2f> points0;
174 float intersectRatio = calcIntersectRatio(points0t.at<Point2f>(i0), r0,
  /external/opencv3/modules/cudalegacy/perf/
perf_calib3d.cpp 117 std::vector<cv::Point2f> image_vec;
  /external/opencv3/modules/cudalegacy/src/
calib3d.cpp 168 Mat_<Point2f> image_subset(1, subset_size);
181 image_subset(0, i) = image->at<Point2f>(subset_indices[i]);
274 Point2f p_proj;
286 if (norm(p_proj - image_normalized.at<Point2f>(0, i)) < max_dist)

Completed in 841 milliseconds

1 2 34 5 6