Incorrect rgb values from image matrix
Afficher commentaires plus anciens
I read an truecolor image (rgb) with size 1200x1600x3 in matlab.Using imtool(image), i see for example that pixel (620,250) corresponds to RGB values=[172,174,96] and i have checked from bitmap that this is the right.When i call image(620,250,1:3) i take as answer (151,158,151).I take wrong rgb values for every pixel exept from pixel (1,1) and pixel (1200,1600).what's the wrong????? Thanks in advance
Réponses (1)
Titus Edelhofer
le 21 Août 2012
0 votes
Hi,
you will need to access image(250, 620, :) to see the RGB values of pixel (620, 250). You see this, when you move the mouse across you image that the row corresponds to y and the column to x.
Titus
Catégories
En savoir plus sur Images dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!