swt requires wavelet tool ... can i run it without the tool
조회 수: 2 (최근 30일)
이전 댓글 표시
i=imread('0.jpg');
i=i(1:400,1:400,:);
[a,b,c,d]=swt2(i,4,'db4')
aw=zeros(size(a));
aw(:,:,2:3,4)=a(:,:,2:3,4);
r=iswt2(aw,0*b,0*c,0*d,'db4');
r2=(r-min(r(:)))/(max(r(:))-min(r(:)));
d=image(r2)
imshow(d)
댓글 수: 0
답변 (1개)
Manikanta Aditya
2024년 3월 23일
이동: Walter Roberson
2024년 3월 23일
The swt2 and iswt2 functions you’re using are part of the Wavelet Toolbox in MATLAB. These functions are used to perform the stationary wavelet transform (SWT) and its inverse. The SWT is a wavelet transform algorithm that does not downsample the signal, making it more suitable for certain applications, particularly in image processing.
If you don’t have the Wavelet Toolbox, you won’t be able to run these functions directly.
댓글 수: 1
Walter Roberson
2024년 3월 23일
Unless you write your own swt2() and iswt2() -- which would be non-trivial.
참고 항목
카테고리
Help Center 및 File Exchange에서 Image Analysis에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!