Effacer les filtres
Effacer les filtres

Resize 4D image (RGB + another channel)

2 vues (au cours des 30 derniers jours)
RuiQi
RuiQi le 17 Juin 2016
Commenté : RuiQi le 17 Juin 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.

Réponse acceptée

Guillaume
Guillaume le 17 Juin 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 commentaire
RuiQi
RuiQi le 17 Juin 2016
Thanks ! It is indeed independent !

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Read, Write, and Modify Image dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by