how remove unwanted angle of arrivals for four channel microphone drone detection system
Mostra commenti meno recenti

I need gudance for removing those frames which contain unwanted angle of arrivals i.e refelction from grounds, blue color are pure drone sound angle of arrivals,
how can i create an boolean array to filter out unnecessary Angle of arrivals, I used "eframe' to do framing and apply GCCPHAT for getting delays of sounds for each frames and finally calculate angles of sound source to microphone, now red color signals are due to reflection i want remove them, please researchers guide me.
angleNum = length(tau1);
angles = zeros(angleNum, 2);
for i = 1:angleNum
[theta, varphi] = angleGet(tau1(i), tau2(i), tau3(i));
angles(i, 1) = theta;
angles(i, 2) = varphi;
end
figure(5);
scatter(angles(:, 1), angles(:, 2));
1 Commento
Amjad Iqbal
il 10 Gen 2019
Risposte (0)
Categorie
Scopri di più su Transmitters and Receivers in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!