Effacer les filtres
Effacer les filtres

Feature Extraction for Radar Data

4 vues (au cours des 30 derniers jours)
Dean Kennedy
Dean Kennedy le 30 Sep 2020
Commenté : Dean Kennedy le 18 Mar 2021
I have Matlab data file containing information for 27 different targets which have been scanned using radar (I cannot share this data). I load the data into matlab using
load('data')
[a, b] = size(data4); %the data is called data4 once loaded, I don't know why
which produces a structure with 27 fields (27 targets) with 6 columns holding information for each target, such as RCS (radar cross section), target array values, name, start frequency etc. The columns which produce values to be plotted are RCS and Target_array which are both stored as complex doubles (both 501x81) within the struct. I can then produce graphs for each target using the following code:
for row=1:b
[a, b]=size(data4(row).RCS);
freq=linspace(16.5,26.5,(length(data4(row).RCS)));
figure;mesh((0:b-1),freq,abs(data4(row).RCS));
axis tight
xlabel('Angle');
ylabel('Freq GHz');
zlabel('RCS m^2');
s=data4(row).target;
title(s);view(-5,60)
set(gca,'FontSize',20,'fontWeight','bold')
set(findall(gcf,'type','text'),'FontSize',20,'fontWeight','bold')
colormap jet;colorbar;
end
My question is, what can I do now to extract features from this data? I can't find any help online with regards to toolboxes or code to extract features and my knowledge on this subject is very limited.
  2 commentaires
Nicholas
Nicholas le 18 Mar 2021
Modifié(e) : Nicholas le 18 Mar 2021
Dear Dean,
I am working on a similar problem with a similar situation presumably. Have you made any headway?
Best regards,
Nick
Dean Kennedy
Dean Kennedy le 18 Mar 2021
Hi Nicholas,
I have tried a few different methods, though my programming ability means I'm not quite up to the task.
There are a few different methods I have used:
  • Measuring symmetry
  • Measuring peaks
  • Principle component analysis
I've been suggested these by a few independent sources, so I assume these methods are most likely to work but I haven't been able to produce any significant results.
Apologies for not helping more
Dean

Connectez-vous pour commenter.

Réponses (0)

Catégories

En savoir plus sur Radar and EW Systems dans Help Center et File Exchange

Produits


Version

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by