PKU-Millimeter-Wave-Radar-T.../基于点云的人体定位demo/generateCfarParameter.m
2024-03-11 21:04:35 +08:00

15 lines
441 B
Matlab
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

%% 生成CFAR所需的参数
function parameter = generateCfarParameter()
parameter.dopplerMethod = 1; %1ca-cfar 2so-cfar 3go-cfar
parameter.dopplerSNR = 10;
parameter.dopplerWinGuardLen = 2;
parameter.dopplerWinTrainLen = 8;
parameter.rangeMethod = 1; %1ca-cfar 2so-cfar 3go-cfar
parameter.rangeSNR = 10;
parameter.rangeWinGuardLen = 2;
parameter.rangeWinTrainLen = 4;
end