Lines Matching full:points
603 void getContourPoints(const Mat& edges, const Mat& dx, const Mat& dy, std::vector<ContourPoint>& points);
689 std::vector<ContourPoint> points;
690 getContourPoints(edges, dx, dy, points);
696 for (size_t i = 0; i < points.size(); ++i)
698 ContourPoint p1 = points[i];
700 for (size_t j = 0; j < points.size(); ++j)
702 ContourPoint p2 = points[j];
731 void GeneralizedHoughGuilImpl::getContourPoints(const Mat& edges, const Mat& dx, const Mat& dy, std::vector<ContourPoint>& points)
737 points.clear();
738 points.reserve(edges.size().area());
755 points.push_back(p);