MATLAB: Image Processing

image analysis

Hi 2 all I have 16×16 image i want to convert this to 128×128 image (that means for every 16 bit it must replicate to 8×8 of this same bit value) Please clarify this Thx in advance

Best Answer

Another way to do it, using the Image Processing Toolbox:
m128 = imresize(m16, 8, 'nearest');