Azzera filtri
Azzera filtri

Binarize image with threshold

3 visualizzazioni (ultimi 30 giorni)
Syed Islam
Syed Islam il 9 Set 2013
Hi,
Using Mathematica I was able to binarize a image with the following command
a1=Binarize[a,0.7]
Does anyone know how i would apply the same threshold of 0.7 using Matlab?
Thanks in advance,
Syed

Risposta accettata

Image Analyst
Image Analyst il 9 Set 2013
You can use graythresh() and bwthresh() which use 0-1, but I think it's simpler to just do
binaryImage = grayImage < grayLevelThreshold;
where grayLevelThreshold is just the regular threshold (0-255 or 0-65535) rather than anormalized number in the range 0-1.

Più risposte (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by