2d dual tree dicrete wavelet transform

1 次查看(过去 30 天)
i am using dual tree discrete wavelet transform it is showing error as >> w = dualtree2D(x, J, Faf, af); ??? Undefined function or method 'afb2D_A' for input arguments of type 'uint8'.
Error in ==> afb2D at 24 [L, H] = afb2D_A(x, af1, 1);

回答(1 个)

Walter Roberson
Walter Roberson 2013-2-5
You need to have installed the toolbox that Youssef mentioned in your other question, http://www.mathworks.co.uk/matlabcentral/answers/61437,
% WAVELET SOFTWARE AT POLYTECHNIC UNIVERSITY, BROOKLYN, NY
% http://taco.poly.edu/WaveletSoftware/
Once you have that installed, use
which -all afb2D_A
If it does not show up then you do not have the toolbox installed correctly.
If it does show up, but the program still does not work, then when you call
w = dualtree2D(x, J, Faf, af)
try changing that to
xdouble = im2double(x);
w = dualtree2D(xdouble, J, Faf, af);

类别

Help CenterFile Exchange 中查找有关 Discrete Multiresolution Analysis 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by