-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgen_LGM_filters.m
19 lines (19 loc) · 1.73 KB
/
gen_LGM_filters.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
function filter_params = gen_LGM_filters()
% Function that sets the parameters of several filters.
filter_params.LGM_phd.title = 'LGM-PHD ';
filter_params.LGM_phd.J_max = 100; % maximum number of components
filter_params.LGM_phd.nb_comp_tg = 4; % nb of components per target, used for pruning
filter_params.LGM_phd.T = 1e-2; % pruning threshold for components/hypotheses
filter_params.LGM_phd.U = 30; % mergng threshold for components/hypotheses
filter_params.LGM_phd.W_max = 4; % maximum number of subsets
filter_params.LGM_phd.P_max = 4; % maximum number of partitions
filter_params.LGM_phd.max_card = 20; % maximum number of targets
filter_params.LGM_phd.run_flag = 'silence'; %'disp' or 'silence' for on the fly output
filter_params.N_low_FA = 2; % % Number of measurements in a cell for it to be merged into FA cell
filter_params.LGM_phd.plot_partitions = 0; % to plot the process of measurement
filter_params.LGM_phd.plot_process = 0; % to plot the process of the predict and update
filter_params.LGM_phd.plot_reduction = 0; % to plot the process of the reductio
filter_params.LGM_phd.alpha = 1; % UT parameter
filter_params.LGM_phd.beta = 2;
filter_params.LGM_phd.kappa = 0;
end