Read pixel by pixel value from two images simultaneously
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Nataliya
le 9 Fév 2017
Réponse apportée : Image Analyst
le 11 Fév 2017
I want to get pixel by pixel value from two images at once. For example, Get 1st pixel value of both images and so on. How can I do this?
0 commentaires
Réponse acceptée
Image Analyst
le 11 Fév 2017
You can't get them simultaneously (unless you're using the Parallel Computing Toolbox). You can get one, then the other, like this:
grayLevel1 = grayImage1(row, column);
grayLevel2 = grayImage2(row, column);
0 commentaires
Plus de réponses (1)
KSSV
le 9 Fév 2017
doc imread. imread reads your images. When you read two images, their dimensions can be different. You can make their dimensions equal using imresize.
Voir également
Catégories
En savoir plus sur Convert Image Type 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!