필터 지우기
필터 지우기

fast wavelet Transformation by using lowpass and highpass

조회 수: 3 (최근 30일)
Jana Kassas
Jana Kassas 2021년 2월 8일
답변: Pratyush Roy 2021년 2월 17일
hello everyone,
I have to write a function to apply 2D FWT on an image. To do this I should:
  1. apply lowpass in x-direction and seperatly highpass filter also in x-direction
  2. on the 2 resulting images apply the lowpss and seperatly the highpass in y-direction
  3. I will have at the end 4 filtered images
I'm struggeling with applying the filters in one direction. Please help

답변 (1개)

Pratyush Roy
Pratyush Roy 2021년 2월 17일
Hi Jana,
The highpass and lowpass functions can be used to perform one dimensional filtering. Let us consider the following snippet:
y = highpass(x,wpass);
Here if x is a matrix, then the function filters each column inependently. To apply filtering across a row, we can take the transpose of the input signal, compute the filtered output and take the transpose of the output again. The following snippet demonstrates the operation.
y_tr = highpass(x',wpass)
y = y_tr';
Similarly, we can perform the operation for lowpass filters.
Hope this helps!

카테고리

Help CenterFile Exchange에서 Filter Banks에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by