フィルターのクリア

Denoising Audio Signal of Doppler

1 回表示 (過去 30 日間)
Freeplot
Freeplot 2020 年 4 月 4 日
コメント済み: Freeplot 2020 年 4 月 4 日
Hi there! Is it possible to remove signal below a defined power-threshold? For example all signals below the power of 5.
  2 件のコメント
Image Analyst
Image Analyst 2020 年 4 月 4 日
Do you want to remove a signal if ALL of the elements are below 5? Or if the MEAN or median of all the elements is below 5?
Freeplot
Freeplot 2020 年 4 月 4 日
Is it possible to continuously calculate the mean/median value over a small section and remove the power below a certain threshold?

サインインしてコメントする。

採用された回答

Ameer Hamza
Ameer Hamza 2020 年 4 月 4 日
It depends on what do you mean by "remove." If you just don't want to skip those frequency values than do something like this
f = [f1 f2 f3 ..]; % vector of frequency values
s = [s1 s2 s3 ..]; % vector of power signal
mask = s > 5; % find the signal values greater than 5
plot(f(mask), s(mask));
For a specific solution for your signals, please share details of how the signal is stored or share the signals in a mat file.
  1 件のコメント
Freeplot
Freeplot 2020 年 4 月 4 日
So I have an audio file and I want to remove/reduce the noise. The goal is to get a signal like in the image below:
First I designed a bandpass-filter and then I found out that the noisy signals have lower power than the doppler frequencies. So I want to reduce lower power signal with setting a threshold. In the following picture you can see the noisy singal in the spectrogram, which I want to reduce.
Thanks!

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeAudio Processing Algorithm Design についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by