フィルターのクリア

related to image processing

1 回表示 (過去 30 日間)
Pooja
Pooja 2013 年 9 月 14 日
sir. I'm working on a project named Satellite image resolution enhancement using DWT.In this when a image is passed through LPF and HPF theres a symbol '/2' that is scaling by 2. what does this mean?? Please help.

採用された回答

G PRAKASH
G PRAKASH 2013 年 9 月 14 日
its called sampling operator.it increases the sampling rate by inserting zeros between samples. example: x = [1 2 3 4] y = upsample(x,3) x = 1 2 3 4 y = 1 0 0 2 0 0 3 0 0 4 0 0
you can directly apply DWT by using dwt2 command. example:
I=imread('rice.png'); [LL,LH,HL,HH] = dwt2(I,'db9'); figure('Name','DWT Subband Images','NumberTitle','off'); subplot(2,2,1); imshow(LL,[]);title('LL'); subplot(2,2,2); imshow(LH,[]);title('LH'); subplot(2,2,3); imshow(HL,[]);title('HL'); subplot(2,2,4); imshow(HH,[]);title('HH'); >>

その他の回答 (1 件)

Pooja
Pooja 2013 年 9 月 14 日
why do i need to sample a image by factor 2 when i need a image's LL,LH,HL,HH bands please help

カテゴリ

Help Center および File ExchangeDiscrete Multiresolution Analysis についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by