
what are the preprocessing steps to get a binary Image using OTSU?
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
engineer
am 22 Nov. 2018
Kommentiert: Image Analyst
am 27 Nov. 2018
Hi All
I am able to get a binary image for the attached example by defining threshold manually (trial and error). However, When I use Otsu thresholding, the result is not satisfactory. What pre-prosessing would be useful before I apply OTSU for the attached Image? I also present the result when I use OTSU AS below.
Any other methods to get a binary Image are welcome.
Thanks

0 Kommentare
Akzeptierte Antwort
Image Analyst
am 25 Nov. 2018
Try a top hat filter. See attached.

11 Kommentare
Image Analyst
am 27 Nov. 2018
It looks like you're trying to find the black stuff whereas I was trying to find the bright stuff inside the black stuff, so I got rid of the last part of the loop and looped over structuring element radii to see which one give the best values. Did you try that? I did and am attaching the code and the image it makes. Pick whatever radius looks best to you. Or you could try to change the shape of the structuring element from a disk to a cross or something to see if that does better.

Weitere Antworten (1)
Image Analyst
am 23 Nov. 2018
Bearbeitet: Image Analyst
am 23 Nov. 2018
Try this:
binaryImage = imbinarize(grayScaleImage);
Or you can try my triangle thresholding method, attached.
You should also do a background correction on the image before using a global threshold. See attached demo.
Siehe auch
Kategorien
Mehr zu Image Segmentation and Analysis finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!