I am in the middle of a project and we are tying to produce different kinds of test data; i need at least an image with 8000 x 8000; which will be a big dataset (for us)
what i have is a 16 bit greyscale image i need to produce a 4 bit image out of it i tried it on png file with;
A=imread('...');
imwrite(A,'4bitpng.png','bitdepth',4);
bu unfortunately it gives me a unit 8 image... what i need is unit 4 image and also the image is so dark how can i make it much more presentable?
Regards to all
Ömer KAYA