Borrar filtros
Borrar filtros

Resize 4D image (RGB + another channel)

2 visualizaciones (últimos 30 días)
RuiQi
RuiQi el 17 de Jun. de 2016
Comentada: RuiQi el 17 de Jun. de 2016
Hi
I cant use imresize to resize an image with 4 channels. How do i do this ? Do i need to resize each channel individually ? Help thanks.

Respuesta aceptada

Guillaume
Guillaume el 17 de Jun. de 2016
It depends on what that extra channel represents (and on the resizing method that you want to use). Assuming that extra channel is completely independent from the RGB data, then you can just use two imresize|
resizedimage = imresize(origimage(:, :, 1:3), ...)
resizedimage(:, :, 4) = imresize(origimage(:, :, 4), ...)
If you use imresize with any method other than nearest neighbour interpolation, then matlab also performs antialiasing which may blend some colours.
  1 comentario
RuiQi
RuiQi el 17 de Jun. de 2016
Thanks ! It is indeed independent !

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Read, Write, and Modify Image 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