Mercurial > hg > nsaunier > traffic-intelligence
diff scripts/display-trajectories.py @ 1292:41219193baa0
aligning undistort argument in all scripts
| author | Nicolas Saunier <nicolas.saunier@polymtl.ca> |
|---|---|
| date | Wed, 25 Sep 2024 08:42:45 -0400 |
| parents | 8e61ff3cd503 |
| children | d073524de272 |
line wrap: on
line diff
--- a/scripts/display-trajectories.py Thu Aug 15 17:04:16 2024 -0400 +++ b/scripts/display-trajectories.py Wed Sep 25 08:42:45 2024 -0400 @@ -17,7 +17,7 @@ parser.add_argument('--intrinsic', dest = 'intrinsicCameraMatrixFilename', help = 'name of the intrinsic camera file') parser.add_argument('--distortion-coefficients', dest = 'distortionCoefficients', help = 'distortion coefficients', nargs = '*', type = float) parser.add_argument('--undistorted-multiplication', dest = 'undistortedImageMultiplication', help = 'undistorted image multiplication', type = float) -parser.add_argument('-u', dest = 'undistort', help = 'undistort the video (because features have been extracted that way)', action = 'store_true') +parser.add_argument('--undistort', dest = 'undistort', help = 'undistort the video (because features have been extracted that way)', action = 'store_true') parser.add_argument('-f', dest = 'firstFrameNum', help = 'number of first frame number to display', type = int) parser.add_argument('-l', dest = 'lastFrameNum', help = 'number of last frame number to save (for image saving, no display is made)', type = int) parser.add_argument('-r', dest = 'rescale', help = 'rescaling factor for the displayed image', default = 1., type = float)
