compressionratioplotter.m

来自「本程序的目的是通过变化DCT系数以及寻找可以应用的DCT系数的最小值来进行可扩展」· 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 + -
显示快捷键?