Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

what is the function to find otsu threshold in emgu cv?

Tags:

c#

opencv

emgucv

I don't need the thresholded image. I want the threshold. I found this in OpenCV.

cv::threshold( orig_img, thres_img, 0, 255, CV_THRESH_BINARY+CV_THRESH_OTSU );

Is there an equivalent in EmguCv. Thanks in advance.

PS. I need to use this threshold for canny edge detector

like image 354
Siddarth Avatar asked Sep 23 '14 07:09

Siddarth


1 Answers

You can refer this code for Auto Canny Edge detector!

Image<Gray, byte> Img_Source_Gray = Img_Org_Gray.Copy();
Image<Gray, byte> Img_Egde_Gray = Img_Source_Gray.CopyBlank();
Image<Gray, byte> Img_SourceSmoothed_Gray = Img_Source_Gray.CopyBlank();
Image<Gray, byte> Img_Otsu_Gray = Img_Org_Gray.CopyBlank();

Img_SourceSmoothed_Gray = Img_Source_Gray.SmoothGaussian(3);
double CannyAccThresh = CvInvoke.cvThreshold(Img_EgdeNR_Gray.Ptr, Img_Otsu_Gray.Ptr, 0, 255, Emgu.CV.CvEnum.THRESH.CV_THRESH_OTSU | Emgu.CV.CvEnum.THRESH.CV_THRESH_BINARY);
double CannyThresh = 0.1 * CannyAccThresh;
Img_Otsu_Gray.Dispose();

Img_Egde_Gray = Img_SourceSmoothed_Gray.Canny(CannyThresh, CannyAccThresh);
imageBox2.Image = Img_Egde_Gray;
like image 140
Balaji R Avatar answered Sep 19 '22 10:09

Balaji R