Update find_ellipses.cpp

pull/3830/head
Suleyman TURKMEN 7 months ago committed by GitHub
parent 80f1ca2442
commit a6ee365156
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 5
      modules/ximgproc/src/find_ellipses.cpp

@ -1218,9 +1218,10 @@ void EllipseDetectorImpl::getTriplets413(VVP &pi, VVP &pj, VVP &pk,
}
}
void EllipseDetectorImpl::preProcessing(Mat1b &image, Mat1b &dp, Mat1b &dn) {
void EllipseDetectorImpl::preProcessing(Mat1b &src, Mat1b &dp, Mat1b &dn) {
// smooth image
GaussianBlur(image, image, _kernelSize, _sigma);
Mat image;
GaussianBlur(src, image, _kernelSize, _sigma);
// temp variables
Mat1b edges;// edge mask

Loading…
Cancel
Save