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

压缩解压

开发平台:

Matlab

  1. function cr = imageratio(f1, f2)
  2. %计算两幅图像压缩比
  3. error(nargchk(2, 2, nargin));
  4. cr = bytes(f1)/bytes(f2);