crvlt_thresh.m

来自「Edge detection in microscopy images usin」· M 代码 · 共 15 行

M
15
字号
function Cth = crvlt_thresh(C, th)% Cth = crvlt_thresh(C, th)%% Performs hard thresholding on the curvelet coefficients 'C', using the% threshold 'th'.% Cth=C;for j=1:length(Cth)    for l=1:length(Cth{j}),        Cth{j}{l} = C{j}{l} .* (abs(C{j}{l}) > th);    endend

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?