Visualizer work
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

20 lines
742 B

// Maximum number of points to store for each object's trajectory.
export const MAX_TRAJECTORY_LENGTH = 50;
// Frames per second for the video playback.
export const VIDEO_FPS = 30;
// Minimum X-coordinate for the radar plot in meters.
export const RADAR_X_MIN = -25;
// Maximum X-coordinate for the radar plot in meters.
export const RADAR_X_MAX = 25;
// Minimum Y-coordinate for the radar plot in meters.
export const RADAR_Y_MIN = 0;
// Maximum Y-coordinate for the radar plot in meters.
export const RADAR_Y_MAX = 80;
// Region of Interest 1 (Tracks Region)
export const ROI_TRACKS_Y_MIN = 0;
export const ROI_TRACKS_Y_MAX = 80;
// Region of Interest 2 (Close Region)
export const ROI_CLOSE_Y_MIN = 0;
export const ROI_CLOSE_Y_MAX = 20;