📄 blk_thres_coding.m
字号:
% threshold coding for intensity imagesfunction codes=blk_thres_coding(codes, threshold)% take Discrete Cosine Transform of each block%codes=dct2(block);% locate DCT coefficients below threshold and set them to zeronz=find(abs(codes) < threshold);codes(nz)=zeros(size(nz));
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -