Undefined function 'wprec2' for input arguments of type 'double'.

조회 수: 1 (최근 30일)
Balkar Singh
Balkar Singh 2021년 8월 22일
댓글: Balkar Singh 2021년 8월 24일
I applied wpdec2 (Wavelet Packet transform) on a color image with size 512 * 512. It generates a subtree then I applied wpcoef to get it coefficients. On these coefficients I created blocks and apply DCT and inverse of DCT and blocks. Then i applied wprec2 after reverse process of block. Then i got a error as given below:
Undefined function 'wprec2' for input arguments of type 'double'.
Please help to troubleshoot this problem.

채택된 답변

dpb
dpb 2021년 8월 22일
Without the actual code sequence we can't tell but the doc for wprec2 says it expects a wavelet packet tree object.
If you've munged on the output of wpdec2 to produce some output array of double, then you've broken the contract between the two of the forward/reverse transform.
All wprec2 promises is that it will reproduce X from the output of wdec2 operating on X
  댓글 수: 1
Balkar Singh
Balkar Singh 2021년 8월 24일
clear all;
img = imread('Image9.png');
T = wpdec2(img,6,'db5');
Tree_cfs = read(T,'allcfs');
X = wpcoef(T);
blksize=[8,8];
blk1 = our_blkproc(X,blksize);
dct_data = zeros(8,8,size(blk1,3));
for i=1:size(blk1,3)
dct_data(:,:,i) = dct2(blk1(:,:,i));
end
dct_data_inv = zeros(8,8,size(blk1,3));
for i=1:size(blk1,3)
dct_data_inv(:,:,i) = idct2(dct_data(:,:,i));
end
final_data = our_blkproc_rev(dct_data_inv);
final_data = reshape(final_data,1,[]);
x1 = wprec2(final_data);
I tried this code

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Signal Analysis에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by