How do I change image scale?

2 visualizaciones (últimos 30 días)
Ryan
Ryan el 7 de Jul. de 2021
Comentada: Ryan el 7 de Jul. de 2021
I have a image that has the value of 716x716 double and size 716x716. However, I need to scale the image to a size of 128. Can I use the scale function to perform this or is there a different way scaling the image to a size of 128?
whatisit = double(Phantom_3_Defects(:,:,2))/255;
figure
imagesc(whatisit)
I have also attached the workspace file.

Respuesta aceptada

KSSV
KSSV el 7 de Jul. de 2021
If I is your image:
I1 = imresize(I,[128 128]) ;
  1 comentario
Ryan
Ryan el 7 de Jul. de 2021
Great! Thank you KSSV, that works.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

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

Productos


Versión

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by