Borrar filtros
Borrar filtros

Read pixel by pixel value from two images simultaneously

4 visualizaciones (últimos 30 días)
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?

Respuesta aceptada

Image Analyst
Image Analyst el 11 de Feb. de 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);

Más respuestas (1)

KSSV
KSSV el 9 de Feb. de 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.
  1 comentario
Nataliya
Nataliya el 9 de Feb. de 2017
I want to get pixel value of two images located at the same position.

Iniciar sesión para comentar.

Categorías

Más información sobre Image Processing Toolbox en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by