Resize 4D image (RGB + another channel)

2 次查看(过去 30 天)
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.

采纳的回答

Guillaume
Guillaume 2016-6-17
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.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Read, Write, and Modify Image 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by