morton.m
来自「EZW的matlab程序 基于小波变换对图像进行压缩编码的研究」· M 代码 · 共 10 行
M
10 行
function scanlist=morton(Mat)
global row col
matlist=mat2list(Mat);
scanorder=listorder(row,col,1,1);
scanlist=[];
for i=1:row*col
scanlist=[scanlist;i scanorder(i,:) matlist(i)];
end
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?