darkest pixel in image
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
i want to get the darkest pixel in an image. the histogram represents the tonal distributions. the pixels that are darkest of all will be at the first line in histogram. how to get the pixels values that are in the darkest gray levels from an histogram. Please anybody help me.
0 commentaires
Réponse acceptée
Plus de réponses (1)
Tijmen
le 26 Fév 2013
If you only have a gray-value image, then the following command will suffice:
darkestPixelValue = min(image(:));
If you have a color image, you first need to convert it to gray-values:
imageGray = im2gray(image);
darkestPixelValue = min(imageGray(:));
If you also would like to find the indices of the pixels in the image, you can use the following command:
[rowVal, colVal] = find(image == darkestPixelValue);
This returns an array of row- and column values corresponding to points at which the pixels are darkest.
1 commentaire
Image Analyst
le 26 Fév 2013
Right, just remember not to use "image" as the name of your variable. Call it rgbImage or something so you don't blow away the built in image() function.
Voir également
Catégories
En savoir plus sur Get Started with Image Processing Toolbox dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!