Azzera filtri
Azzera filtri

Read pixel by pixel value from two images simultaneously

4 visualizzazioni (ultimi 30 giorni)
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?

Risposta accettata

Image Analyst
Image Analyst il 11 Feb 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);

Più risposte (1)

KSSV
KSSV il 9 Feb 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.

Categorie

Scopri di più su Image Processing Toolbox in Help Center e File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by