Lines Matching refs:edges

69         void setTemplateImpl(InputArray edges, InputArray dx, InputArray dy, Point templCenter);
72 …void detectImpl(InputArray edges, InputArray dx, InputArray dy, OutputArray positions, OutputArray…
97 void calcEdges(InputArray src, Mat& edges, Mat& dx, Mat& dy);
110 void GeneralizedHoughBase::calcEdges(InputArray _src, Mat& edges, Mat& dx, Mat& dy) in calcEdges() argument
117 Canny(src, edges, cannyLowThresh_, cannyHighThresh_); in calcEdges()
135 …void GeneralizedHoughBase::setTemplateImpl(InputArray edges, InputArray dx, InputArray dy, Point t… in setTemplateImpl() argument
137 edges.getMat().copyTo(templEdges_); in setTemplateImpl()
179 …void GeneralizedHoughBase::detectImpl(InputArray edges, InputArray dx, InputArray dy, OutputArray … in detectImpl() argument
181 edges.getMat().copyTo(imageEdges_); in detectImpl()
335 …void setTemplate(InputArray edges, InputArray dx, InputArray dy, Point templCenter) { setTemplateI… in setTemplate() argument
338 …void detect(InputArray edges, InputArray dx, InputArray dy, OutputArray positions, OutputArray vot… in detect() argument
507 …void setTemplate(InputArray edges, InputArray dx, InputArray dy, Point templCenter) { setTemplateI… in setTemplate() argument
510 …void detect(InputArray edges, InputArray dx, InputArray dy, OutputArray positions, OutputArray vot… in detect() argument
602 …void buildFeatureList(const Mat& edges, const Mat& dx, const Mat& dy, std::vector< std::vector<Fea…
603 …void getContourPoints(const Mat& edges, const Mat& dx, const Mat& dy, std::vector<ContourPoint>& p…
681 …void GeneralizedHoughGuilImpl::buildFeatureList(const Mat& edges, const Mat& dx, const Mat& dy, st… in buildFeatureList() argument
690 getContourPoints(edges, dx, dy, points); in buildFeatureList()
731 …void GeneralizedHoughGuilImpl::getContourPoints(const Mat& edges, const Mat& dx, const Mat& dy, st… in getContourPoints() argument
733 CV_Assert( edges.type() == CV_8UC1 ); in getContourPoints()
734 CV_Assert( dx.type() == CV_32FC1 && dx.size == edges.size ); in getContourPoints()
735 CV_Assert( dy.type() == dx.type() && dy.size == edges.size ); in getContourPoints()
738 points.reserve(edges.size().area()); in getContourPoints()
740 for (int y = 0; y < edges.rows; ++y) in getContourPoints()
742 const uchar* edgesRow = edges.ptr(y); in getContourPoints()
746 for (int x = 0; x < edges.cols; ++x) in getContourPoints()