blk_thres_coding.m
来自「本程序的目的是通过变化DCT系数以及寻找可以应用的DCT系数的最小值来进行可扩展」· M 代码 · 共 11 行
M
11 行
% 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 + =
减小字号Ctrl + -
显示快捷键?