exJPEG.m
上传用户:hwtw888
上传日期:2016-03-15
资源大小:177k
文件大小:0k
源码类别:

压缩解压

开发平台:

Matlab

  1. clear all
  2. tic
  3. x = imread('lena512.bmp');
  4. figure;
  5. subplot(121);
  6. imshow(x);
  7. y = jpegencode(x, 5);
  8. X = jpegdecode(y);
  9. subplot(122);
  10. imshow(X);
  11. %e = double(x) - double(X);
  12. %[m, n] = size(e);
  13. erms = erms(x, X)  %sqrt(sum(e(:).^2)/(m*n))
  14. cr = imageratio(x, y)
  15. toc