annotate tracking.cfg @ 1276:bae8de98406f default tip

corrected bug in categorical value smoothing
author Nicolas Saunier <nicolas.saunier@polymtl.ca>
date Tue, 25 Jun 2024 16:40:40 -0400
parents 9c27a0315c4d
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
952
a9b2beef0db4 loading and assigning motion patterns works
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 948
diff changeset
1 # filename of the video to process (can be images, eg image%04d.png)
319
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 228
diff changeset
2 video-filename = laurier.avi
137
445e773c9be3 created the parameter structure to parse parameters (bug remaining)
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 118
diff changeset
3 # filename of the database where results are saved
319
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 228
diff changeset
4 database-filename = laurier.sqlite
137
445e773c9be3 created the parameter structure to parse parameters (bug remaining)
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 118
diff changeset
5 # filename of the homography matrix
319
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 228
diff changeset
6 homography-filename = laurier-homography.txt
625
9202628a4130 saving image when playing video
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 589
diff changeset
7 # filename of the camera intrinsic matrix
506
13d4eb96a751 added needed parameters
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 483
diff changeset
8 intrinsic-camera-filename = intrinsic-camera.txt
13d4eb96a751 added needed parameters
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 483
diff changeset
9 # -0.11759321 0.0148536 0.00030756 -0.00020578 -0.00091816
13d4eb96a751 added needed parameters
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 483
diff changeset
10 distortion-coefficients = -0.11759321
13d4eb96a751 added needed parameters
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 483
diff changeset
11 distortion-coefficients = 0.0148536
13d4eb96a751 added needed parameters
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 483
diff changeset
12 distortion-coefficients = 0.00030756
13d4eb96a751 added needed parameters
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 483
diff changeset
13 distortion-coefficients = -0.00020578
13d4eb96a751 added needed parameters
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 483
diff changeset
14 distortion-coefficients = -0.00091816
13d4eb96a751 added needed parameters
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 483
diff changeset
15 # undistorted image multiplication
13d4eb96a751 added needed parameters
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 483
diff changeset
16 undistorted-size-multiplication = 1.31
509
935430b1d408 corrected mask bug in feature tracking, updated display-trajectories to display on undistorted image
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 508
diff changeset
17 # Interpolation method for remapping image when correcting for distortion: 0 for INTER_NEAREST - a nearest-neighbor interpolation; 1 for INTER_LINEAR - a bilinear interpolation (used by default); 2 for INTER_CUBIC - a bicubic interpolation over 4x4 pixel neighborhood; 3 for INTER_LANCZOS4
935430b1d408 corrected mask bug in feature tracking, updated display-trajectories to display on undistorted image
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 508
diff changeset
18 interpolation-method = 1
137
445e773c9be3 created the parameter structure to parse parameters (bug remaining)
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 118
diff changeset
19 # filename of the mask image (where features are detected)
319
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 228
diff changeset
20 mask-filename = none
508
6f7fa0093162 adding parameter undistort in tracking.cfg
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 507
diff changeset
21 # undistort the video for feature tracking
535
5ad2f51ae42f cleaning up initialization of intrinsic matrix
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 509
diff changeset
22 undistort = false
137
445e773c9be3 created the parameter structure to parse parameters (bug remaining)
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 118
diff changeset
23 # load features from database
445e773c9be3 created the parameter structure to parse parameters (bug remaining)
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 118
diff changeset
24 load-features = false
445e773c9be3 created the parameter structure to parse parameters (bug remaining)
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 118
diff changeset
25 # display trajectories on the video
445e773c9be3 created the parameter structure to parse parameters (bug remaining)
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 118
diff changeset
26 display = false
348
c64a4f889b97 added safety analysis options to feature tracking (with default values for backward compatibility)
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 319
diff changeset
27 # original video frame rate (number of frames/s)
118
b3e3d9f80a6a added configuration file and parameter structure
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents:
diff changeset
28 video-fps = 29.97
137
445e773c9be3 created the parameter structure to parse parameters (bug remaining)
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 118
diff changeset
29 # number of digits of precision for all measurements derived from video
445e773c9be3 created the parameter structure to parse parameters (bug remaining)
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 118
diff changeset
30 # measurement-precision = 3
445e773c9be3 created the parameter structure to parse parameters (bug remaining)
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 118
diff changeset
31 # first frame to process
118
b3e3d9f80a6a added configuration file and parameter structure
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents:
diff changeset
32 frame1 = 0
228
23da16442433 minor modifications for unsigned int (nframes is now 0 to process all frames)
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 141
diff changeset
33 # number of frame to process: 0 means processing all frames
23da16442433 minor modifications for unsigned int (nframes is now 0 to process all frames)
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 141
diff changeset
34 nframes = 0
118
b3e3d9f80a6a added configuration file and parameter structure
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents:
diff changeset
35 # feature tracking
137
445e773c9be3 created the parameter structure to parse parameters (bug remaining)
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 118
diff changeset
36 # maximum number of features added at each frame
118
b3e3d9f80a6a added configuration file and parameter structure
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents:
diff changeset
37 max-nfeatures = 1000
137
445e773c9be3 created the parameter structure to parse parameters (bug remaining)
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 118
diff changeset
38 # quality level of the good features to track
775
56153d439f8c updated sample parameters in tracking.cfg to good parameters from the TRB paper Morse et al 2016
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 685
diff changeset
39 feature-quality = 0.0812219538558
634
b61b309cb9da added units to paramters
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 625
diff changeset
40 # minimum distance between features (px)
775
56153d439f8c updated sample parameters in tracking.cfg to good parameters from the TRB paper Morse et al 2016
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 685
diff changeset
41 min-feature-distanceklt = 3.54964337411
634
b61b309cb9da added units to paramters
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 625
diff changeset
42 # size of the block for feature characteristics (px)
495
82c06ad62254 added parameter description with ranges
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 483
diff changeset
43 block-size = 7
137
445e773c9be3 created the parameter structure to parse parameters (bug remaining)
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 118
diff changeset
44 # use of Harris corner detector
445e773c9be3 created the parameter structure to parse parameters (bug remaining)
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 118
diff changeset
45 use-harris-detector = false
445e773c9be3 created the parameter structure to parse parameters (bug remaining)
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 118
diff changeset
46 # k parameter to detect good features to track (OpenCV)
445e773c9be3 created the parameter structure to parse parameters (bug remaining)
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 118
diff changeset
47 k = 0.4
634
b61b309cb9da added units to paramters
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 625
diff changeset
48 # size of the search window at each pyramid level (px)
775
56153d439f8c updated sample parameters in tracking.cfg to good parameters from the TRB paper Morse et al 2016
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 685
diff changeset
49 window-size = 6
137
445e773c9be3 created the parameter structure to parse parameters (bug remaining)
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 118
diff changeset
50 # maximal pyramid level in the feature tracking algorithm
118
b3e3d9f80a6a added configuration file and parameter structure
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents:
diff changeset
51 pyramid-level = 5
137
445e773c9be3 created the parameter structure to parse parameters (bug remaining)
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 118
diff changeset
52 # number of displacement to test minimum feature motion
445e773c9be3 created the parameter structure to parse parameters (bug remaining)
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 118
diff changeset
53 ndisplacements = 3
968
32a34a143c27 work on sumo and metadata
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 952
diff changeset
54 # minimum displacement to keep features (world distance unit or px)
118
b3e3d9f80a6a added configuration file and parameter structure
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents:
diff changeset
55 min-feature-displacement = 0.05
137
445e773c9be3 created the parameter structure to parse parameters (bug remaining)
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 118
diff changeset
56 # maximum feature acceleration
118
b3e3d9f80a6a added configuration file and parameter structure
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents:
diff changeset
57 acceleration-bound = 3
137
445e773c9be3 created the parameter structure to parse parameters (bug remaining)
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 118
diff changeset
58 # maximum feature deviation
118
b3e3d9f80a6a added configuration file and parameter structure
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents:
diff changeset
59 deviation-bound = 0.6
137
445e773c9be3 created the parameter structure to parse parameters (bug remaining)
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 118
diff changeset
60 # number of frames to smooth positions (half window)
141
6f10a227486c modifications to get nframes option working on the command line
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 139
diff changeset
61 smoothing-halfwidth = 5
137
445e773c9be3 created the parameter structure to parse parameters (bug remaining)
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 118
diff changeset
62 # number of frames to compute velocities
445e773c9be3 created the parameter structure to parse parameters (bug remaining)
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 118
diff changeset
63 #nframes-velocity = 5
445e773c9be3 created the parameter structure to parse parameters (bug remaining)
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 118
diff changeset
64 # maximum number of iterations to stop feature tracking
589
5800a87f11ae corrected one bug and changed attribute names
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 537
diff changeset
65 max-number-iterations = 20
137
445e773c9be3 created the parameter structure to parse parameters (bug remaining)
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 118
diff changeset
66 # minimum error to reach to stop feature tracking
775
56153d439f8c updated sample parameters in tracking.cfg to good parameters from the TRB paper Morse et al 2016
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 685
diff changeset
67 min-tracking-error = 0.183328975142
418
ca5784652d57 updated use of calcOpticalFlowPyrLK for new signature, added minEigThreshold parameter in configuration file
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 352
diff changeset
68 # minimum eigen value of a 2x2 normal matrix of optical flow equations
ca5784652d57 updated use of calcOpticalFlowPyrLK for new signature, added minEigThreshold parameter in configuration file
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 352
diff changeset
69 min-feature-eig-threshold = 1e-4
137
445e773c9be3 created the parameter structure to parse parameters (bug remaining)
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 118
diff changeset
70 # minimum length of a feature (number of frames) to consider a feature for grouping
968
32a34a143c27 work on sumo and metadata
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 952
diff changeset
71 min-feature-time = 15
118
b3e3d9f80a6a added configuration file and parameter structure
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents:
diff changeset
72 # Min Max similarity parameters (Beymer et al. method)
634
b61b309cb9da added units to paramters
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 625
diff changeset
73 # connection distance in feature grouping (world distance unit or px)
775
56153d439f8c updated sample parameters in tracking.cfg to good parameters from the TRB paper Morse et al 2016
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 685
diff changeset
74 mm-connection-distance = 2.68813545522
634
b61b309cb9da added units to paramters
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 625
diff changeset
75 # segmentation distance in feature grouping (world distance unit or px)
775
56153d439f8c updated sample parameters in tracking.cfg to good parameters from the TRB paper Morse et al 2016
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 685
diff changeset
76 mm-segmentation-distance = 1.81511847456
634
b61b309cb9da added units to paramters
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 625
diff changeset
77 # maximum distance between features for grouping (world distance unit or px)
977
9c27a0315c4d corrected inconsistency
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 976
diff changeset
78 max-distance = 5
137
445e773c9be3 created the parameter structure to parse parameters (bug remaining)
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 118
diff changeset
79 # minimum cosine of the angle between the velocity vectors for grouping
118
b3e3d9f80a6a added configuration file and parameter structure
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents:
diff changeset
80 min-velocity-cosine = 0.8
137
445e773c9be3 created the parameter structure to parse parameters (bug remaining)
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 118
diff changeset
81 # minimum average number of features per frame to create a vehicle hypothesis
775
56153d439f8c updated sample parameters in tracking.cfg to good parameters from the TRB paper Morse et al 2016
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 685
diff changeset
82 min-nfeatures-group = 3.16747690802
812
21f10332c72b moved the classification parameters from tracking.cfg to a new classifier.cfg and made all classification parameters apparent
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 775
diff changeset
83 # name of the configuration file for all classifier information
21f10332c72b moved the classification parameters from tracking.cfg to a new classifier.cfg and made all classification parameters apparent
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 775
diff changeset
84 classifier-filename = classifier.cfg
348
c64a4f889b97 added safety analysis options to feature tracking (with default values for backward compatibility)
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 319
diff changeset
85 # Safety analysis
c64a4f889b97 added safety analysis options to feature tracking (with default values for backward compatibility)
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 319
diff changeset
86 # maximum speed when predicting future motion (km/h)
c64a4f889b97 added safety analysis options to feature tracking (with default values for backward compatibility)
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 319
diff changeset
87 max-predicted-speed = 50
c64a4f889b97 added safety analysis options to feature tracking (with default values for backward compatibility)
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 319
diff changeset
88 # time horizon for collision prediction (s)
976
7f5cbdc107c5 corrected bug in converting time horizon to frames for internal computations (results for TTC, pPET and PET will be in frames)
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 968
diff changeset
89 prediction-time-horizon = 5.0
348
c64a4f889b97 added safety analysis options to feature tracking (with default values for backward compatibility)
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 319
diff changeset
90 # collision distance threshold (m)
c64a4f889b97 added safety analysis options to feature tracking (with default values for backward compatibility)
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 319
diff changeset
91 collision-distance = 1.8
c64a4f889b97 added safety analysis options to feature tracking (with default values for backward compatibility)
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 319
diff changeset
92 # option to compute crossing zones and predicted PET
349
e3f910c26fae added other safety analysis parameters
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 348
diff changeset
93 crossing-zones = false
943
b1e8453c207c work on motion prediction using motion patterns
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 812
diff changeset
94 # prediction method: cv, cvd, na, ps, mp
352
72aa44072093 safety analysis script with option for prediction method
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 351
diff changeset
95 prediction-method = na
349
e3f910c26fae added other safety analysis parameters
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 348
diff changeset
96 # number of predicted trajectories (use depends on prediction method)
e3f910c26fae added other safety analysis parameters
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 348
diff changeset
97 npredicted-trajectories = 10
483
30b3455978d9 Corrected issues with safety-analysis script, variable names are changed and tracking.cfg accordingly
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 418
diff changeset
98 # maximum acceleration for normal adaptation input symmetric distribution (m/s2)
30b3455978d9 Corrected issues with safety-analysis script, variable names are changed and tracking.cfg accordingly
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 418
diff changeset
99 max-normal-acceleration = 2
30b3455978d9 Corrected issues with safety-analysis script, variable names are changed and tracking.cfg accordingly
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 418
diff changeset
100 # maximum steering for normal adaptation input symmetric distribution (rad/s)
30b3455978d9 Corrected issues with safety-analysis script, variable names are changed and tracking.cfg accordingly
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 418
diff changeset
101 max-normal-steering = 0.2
30b3455978d9 Corrected issues with safety-analysis script, variable names are changed and tracking.cfg accordingly
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 418
diff changeset
102 # minimum acceleration for input distribution (m/s2) (extreme values used for evasive action distributions)
30b3455978d9 Corrected issues with safety-analysis script, variable names are changed and tracking.cfg accordingly
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 418
diff changeset
103 min-extreme-acceleration = -9.1
30b3455978d9 Corrected issues with safety-analysis script, variable names are changed and tracking.cfg accordingly
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 418
diff changeset
104 # maximum acceleration for input distribution (m/s2) (extreme values used for evasive action distributions)
30b3455978d9 Corrected issues with safety-analysis script, variable names are changed and tracking.cfg accordingly
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 418
diff changeset
105 max-extreme-acceleration = 4.3
30b3455978d9 Corrected issues with safety-analysis script, variable names are changed and tracking.cfg accordingly
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 418
diff changeset
106 # maximum steering for input distribution (rad/s) (extreme values used for evasive action distributions)
30b3455978d9 Corrected issues with safety-analysis script, variable names are changed and tracking.cfg accordingly
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 418
diff changeset
107 max-extreme-steering = 0.5
351
891858351bcb added new parameter (use features) for safety analysis
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 349
diff changeset
108 # use feature positions and velocities for prediction
352
72aa44072093 safety analysis script with option for prediction method
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 351
diff changeset
109 use-features-prediction = true
943
b1e8453c207c work on motion prediction using motion patterns
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 812
diff changeset
110 # use constant speed (motion pattern based prediction)
948
584b9405e494 added safety analysis parameters for motion patterns
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 943
diff changeset
111 constant-speed = false
584b9405e494 added safety analysis parameters for motion patterns
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 943
diff changeset
112 # point distance threshold, for the chosen metric for trajectory matching using LCSS
584b9405e494 added safety analysis parameters for motion patterns
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 943
diff changeset
113 max-lcss-distance = 2.
584b9405e494 added safety analysis parameters for motion patterns
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 943
diff changeset
114 # distance metric for trajectory matching using LCSS
584b9405e494 added safety analysis parameters for motion patterns
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 943
diff changeset
115 lcss-metric = cityblock
584b9405e494 added safety analysis parameters for motion patterns
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 943
diff changeset
116 # similarity threshold for trajectory matching on normalized LCSS
584b9405e494 added safety analysis parameters for motion patterns
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 943
diff changeset
117 min-lcss-similarity = 0.4
584b9405e494 added safety analysis parameters for motion patterns
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 943
diff changeset
118 # minimum past feature length for past trajectory matching for motion prediction -> using min-feature-time