Borrar filtros
Borrar filtros

How to compare size of to image?

3 visualizaciones (últimos 30 días)
Femi Joy
Femi Joy el 23 de En. de 2013
I'm a fresher to MATLAB. i m looking for how to compare size of two images, if no then how to make the images to the same size.

Respuestas (1)

Walter Roberson
Walter Roberson el 23 de En. de 2013
size() applied to the variable will tell you the dimensions in each direction.
If you have the Image Processing toolbox then imresize() can resize images. For example,
newB = imresize(B, [size(A,1), size(A,2)])
  2 comentarios
Image Analyst
Image Analyst el 23 de En. de 2013
Editada: Image Analyst el 23 de En. de 2013
or simply newB = imresize(B, size(A)); if A is a monochrome image.
Walter Roberson
Walter Roberson el 23 de En. de 2013
Not if A is an RGB image: size(A) would have 3 elements instead of 2 in that case.

Iniciar sesión para comentar.

Community Treasure Hunt

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

Start Hunting!

Translated by