Home | History | Annotate | Download | only in tapi

Lines Matching full:points

84         "{ points           | 1000            | specify points count [GoodFeatureToTrack] }"
85 "{ min_dist | 0 | specify minimal distance between points [GoodFeatureToTrack] }"
103 int points = cmd.get<int>("points");
112 vector<cv::Point2f> pts(points);
113 vector<cv::Point2f> nextPts(points);
114 vector<unsigned char> status(points);
117 cout << "Points count : " << points << endl << endl;
173 goodFeaturesToTrack(ptr0, pts, points, 0.01, 0.0);
210 goodFeaturesToTrack(frame0, pts, points, 0.01, minDist);