?? ifrit.m
字號:
function a = ifrit(r, l, m, wname)
% IFRIT Inverse finite ridgelet transform
% a = ifrit(r, l, m, wname)
%
% Input:
% r: ridgelet coefficients in a matrix, one column
% for each direction (there is P+1 directions)
% l: structure of the wavelet decomposition that is
% needed for reconstruction
% m: normalized mean value of the image
% wname: wavelet name
%
% Output:
% a: reconstructed image
%
% See also: FRIT
% Back to Radon domain.
ra = waverecc(r, l, wname);
% Inverse the finite Radon transform with the mean corrected
a = ifrat(ra, 0);
% Add back the DC component
a = a + m / (size(r, 2) - 1);
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -