childmat.m
来自「EZW的matlab程序 基于小波变换对图像进行压缩编码的研究」· M 代码 · 共 9 行
M
9 行
function chMat=childMat(Mat,chRows,chCols)
global row col
chPoint=treeMat(chRows,chCols);
chMat=[];
[mRows,mCols]=size(chPoint);
for iRows=1:mRows
chMat=[chMat;chPoint(iRows,1),chPoint(iRows,2),Mat(chPoint(iRows,1),chPoint(iRows,2))];
end
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?