compressionratioplotter.m
来自「实现图象,可以直接运行,里面有示例图象,十分便捷的实现图象压缩」· M 代码 · 共 15 行
M
15 行
clear all
close all
load foreman_threshold6_256x256
newres = compressionratioWOE(2:33,1:9);
Bres = cat(1,newres(1:32,1),newres(1:32,2),newres(1:32,4),newres(1:32,5),newres(1:32,7),newres(1:32,8));
Pres = cat(1,newres(1:32,3),newres(1:32,6));
Ires = newres(1:32,9);
figure;
axis([1 10 1 5]);
plot(Bres,'g.-');
hold;
plot(Pres,'r.-');
plot(Ires,'b.-');
axis([1 200 0 1]);
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?