Effacer les filtres
Effacer les filtres

extraction of pixel values of image

3 vues (au cours des 30 derniers jours)
Smruti Khobragade
Smruti Khobragade le 24 Jan 2020
Hello
i want to extract the pixels values of image attached and store it in array or matrix?
  3 commentaires
Guillaume
Guillaume le 24 Jan 2020
Modifié(e) : Guillaume le 24 Jan 2020
The question is not clear. In matlab, an image is stored as a matrix of pixel values. So if you've got the image loaded in matlab, you already have what you want.
Smruti Khobragade
Smruti Khobragade le 29 Jan 2020
i wanted to get the highest pixel values of black color to compare it with anothe images highest black color pixel values

Connectez-vous pour commenter.

Réponses (1)

Jose Jeremias Caballero
Jose Jeremias Caballero le 24 Jan 2020
Modifié(e) : Jose Jeremias Caballero le 24 Jan 2020
>> a=imread('image.jpeg');
>> read1=a(:,:,1);
>> green1=a(:,:,2);
>> blue1=a(:,:,3);
  3 commentaires
Image Analyst
Image Analyst le 24 Jan 2020
read is a built-in function. You shouldn't use built-in function names as variables -- I think you meant red.
Smruti Khobragade
Smruti Khobragade le 29 Jan 2020
hello,image analyst
sir can u help me in another question i posted
Thankyou .

Connectez-vous pour commenter.

Catégories

En savoir plus sur Image Processing Toolbox 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!

Translated by