Sepideh Abadpour
Sepideh Abadpour

Reputation: 2598

filter a tiff image to reduce its pixel numbers without changing its bit depth

I have a black-white tiff image with 15369x15360 pixels and 8 bit depth now I want to convert this image to a 7680x7680 tiff image and I want its bit depth to remain 8
what code can I use in matlab to do this?

Upvotes: 1

Views: 1153

Answers (2)

Herr von Wurst
Herr von Wurst

Reputation: 2621

Changing the size of an image should never change the bit depth. Have a look at

http://www.mathworks.de/help/toolbox/images/ref/imresize.html

Upvotes: 0

Li-aung Yip
Li-aung Yip

Reputation: 12486

So you want to resize the image? Do you want imresize() from the Image Processing toolbox?

Upvotes: 3

Related Questions