Effacer les filtres
Effacer les filtres

Difference between graythresh and multithresh for one value of threshold.

3 vues (au cours des 30 derniers jours)
D_coder
D_coder le 30 Août 2018
Commenté : Amir Xz le 4 Sep 2018
graythresh(I) and multithresh(I,1) gives me different values even if both are based on otsu's method of thresholding Why?

Réponses (1)

Amir Xz
Amir Xz le 31 Août 2018
t1 = multithresh(I,1);
t2 = graythresh(I);
t1 is a LEVEL, which means is a number between 0 to 255.
t2 is same LEVEL that mapped in [0 1].
In other word:
t1 == uint8(256*t2)
  3 commentaires
Amir Xz
Amir Xz le 4 Sep 2018
I gave you an example for an 8-bit digital image.
Example: Check it for 'coins.png' image.
What kind of image that you use?
Amir Xz
Amir Xz le 4 Sep 2018
I don't know about this kind of images.

Connectez-vous pour commenter.

Community Treasure Hunt

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

Start Hunting!

Translated by