답변 있음 How can I unscramble a scrambled image?
Dear @eulerphi, use this code:
I = imread('Lena512.bmp');
row = size(I, 1) / 64;
col = size(I, 2) / 64;
I_scramble = mat2ce...
답변 있음 Signal-to-noise ratio color image
i hope you are using image in the format of uint8 so maximum value will be 255,
in this case S=255.^2
you can use this code fo...
답변 있음 Any hint about this error?
eye() will give you a output in double format and when you use ~~eye() it automatically converts in logical.
the command R(in...