0

I was going through the documentation of Emugu CV but could not find which thing to use. Can someone show me some examples on how to use it for adaptive gaussian thresholding ?

bazzi
  • 559
  • 1
  • 8
  • 23

1 Answers1

2

An example of Adaptive Gaussian thresholding

Image<Gray, byte> input;
Image<Gray, byte> output= input.ThresholdAdaptive(new Gray(255), Emgu.CV.CvEnum.ADAPTIVE_THRESHOLD_TYPE.ADAPTIVE_THRESH_GAUSSIAN_C, Emgu.CV.CvEnum.THRESH.CV_THRESH_BINARY , windowSize, new Gray(0.03));

hope this helps

hariprasad
  • 838
  • 1
  • 8
  • 16