impixelinfo how to get position of a selected point and the intensity in a variable
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Patrick Brown
le 12 Fév 2017
Réponse apportée : Image Analyst
le 12 Fév 2017
Hi, with impixelinfo you can see the values of intensity of different points in an image Pixel Info (X,Y): Intensity but how can you select a pixel from one image and get this info in the workspace?? (the position of the pixel and the intensity)
0 commentaires
Réponse acceptée
Image Analyst
le 12 Fév 2017
You'd have to call ginput() to get the value since impixelinfo() is not meant to operate in that way since it gives a "live" readout of wherever the user is.
[x, y] = ginput(1);
grayLevel = grayImage(y, x); % Note x and y are switched since y = row.
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Convert Image Type 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!