extracting pixel values from image
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Smruti Khobragade
le 29 Jan 2020
Commenté : Smruti Khobragade
le 29 Jan 2020
Hello,
I have to get the value of pure black pixel in images which hva colorbar
i have converted the range of pixels using function of thresholding and divided the image accorging.
how can i get value of highest and min value(how pure the black color is?)
like waht is the highrst value of pixels ie highest value of black color in each image?
0 commentaires
Réponse acceptée
Jose Jeremias Caballero
le 29 Jan 2020
Modifié(e) : Jose Jeremias Caballero
le 29 Jan 2020
a=imread('binary2.jpg');
imshow(a);
minimum=min(min(a)),
[row,column]=find(a==minimum);
hold on,
plot(column,row,'*'),
hold off,
minimum =
uint8
88
2 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Orange dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!