필터 지우기
필터 지우기

how to write a m file code to cfar for fmcw radar

조회 수: 28 (최근 30일)
ahmed
ahmed 2014년 12월 5일
댓글: Amr Aboughazala 2022년 8월 17일
how to write a m file code to cfar for fmcw radar can anyone help plz

답변 (2개)

Abdullah OZCAN
Abdullah OZCAN 2016년 1월 3일
편집: Walter Roberson 2016년 3월 28일
CFAR thresholding does not depend on the radar type. It is about thresholding the signal at the mixer output. The signal is the amplitude level of range measurements. Here is a sample code. It is only about finding the noise average. This code implements the cell averaging cfar:
close all;
s=randn(1000,1);
s([100, 300, 700])=[30 40 50];
figure,plot(s);
refLength=12;
guardLength=3;
offset=3;
cfarWin=ones((refLength+guardLength)*2+1,1);
cfarWin(refLength+1:refLength+1+2*guardLength)=0;
cfarWin=cfarWin/sum(cfarWin);
noiseLevel=conv(s,cfarWin,'same');
cfarThreshold=noiseLevel+offset;
figure,plot(s);
hold on,plot(cfarThreshold,'r--','LineWidth',2)
legend('Signal','CFAR Threshold')
  댓글 수: 3
Kaitlyn  Nguyen
Kaitlyn Nguyen 2021년 10월 23일
편집: Kaitlyn Nguyen 2021년 10월 23일
What about OS-CFAR? Do you have sample code for that?
Also how do you calculate the detection?
Thank you!
Amr Aboughazala
Amr Aboughazala 2022년 8월 17일
but why offset with addition?
This is different than the scale that have to be multiplied in linear domain. The scale should depend on the desired probability of false alarm.
N = refLength*2;
scale = pbFalseAlarm^(-1/N) - 1;
cfarThreshold=noiseLevel*scale;
is that correct?

댓글을 달려면 로그인하십시오.


Honglei Chen
Honglei Chen 2016년 3월 28일
You may also want to take a look at CFAR detector offered in Phased Array System Toolbox. The noise is estimated using training cells that does not include signal.

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by