Complex steerable pyramid(CSP)
古いコメントを表示
Hi guys.
I tried this CSP to decompose an image. I don't quite understand the output image as shown, anyone mind to explain? Is the output image display the in the Fourier domain? Or spatial domain?
imageA = imread('testimage','jpg');
imshow(imageA);
I=rgb2gray(imageA);
[pyr, pind] = buildSCFpyr(I,3,3);
pyrAmp=abs(pyr);
pyrPh=angle(pyr);
subplot(2,1,1);
imagesc(pyrBand(abs(pyr), pind, 1));
subplot(2,1,2);
imagesc(pyrBand(angle(pyr), pind, 1));

Input Image

Output
I would like to get the phase of the image after decomposed, is taking angle(pry) correct? Do I still need to ifft2?
abs(pyr)
Thanks.
回答 (0 件)
カテゴリ
ヘルプ センター および File Exchange で Image Analysis についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!