microshift_compression
microshift_compression copied to clipboard
Color input image support
I wanted to know if the matlab code supports color image compression. From the code it looks like images are converted to grayscale before conversion.
Hi, one way to apply the method to colorful images is to apply the algorithm to independent channels.
Great! Thank you! If I wanted to use Microshift on 64x64 images, do I just make the following changes in example_testbench_low_power.m
:
ActivePixels = 64; % from 216
ActiveLines = 64; % from 256
...
origIm = imresize(origIm, [64, ActivePixels]);