kopia lustrzana https://github.com/OpenDroneMap/ODM
Add rerun-all and rerun-from arguments
rodzic
a90c47eeec
commit
c25388b0c2
|
@ -29,10 +29,22 @@ parser.add_argument('--end-with', '-e',
|
||||||
choices=processopts,
|
choices=processopts,
|
||||||
help=('Can be one of:' + ' | '.join(processopts)))
|
help=('Can be one of:' + ' | '.join(processopts)))
|
||||||
|
|
||||||
parser.add_argument('--rerun', '-r',
|
rerun = parser.add_mutually_exclusive_group()
|
||||||
metavar='<string>',
|
|
||||||
choices=processopts,
|
rerun.add_argument('--rerun', '-r',
|
||||||
help=('Can be one of:' + ' | '.join(processopts)))
|
metavar='<string>',
|
||||||
|
choices=processopts,
|
||||||
|
help=('Can be one of:' + ' | '.join(processopts)))
|
||||||
|
|
||||||
|
rerun.add_argument('--rerun-all',
|
||||||
|
action='store_true',
|
||||||
|
default=False,
|
||||||
|
help='force rerun of all tasks')
|
||||||
|
|
||||||
|
rerun.add_argument('--rerun-from',
|
||||||
|
metavar='<string>',
|
||||||
|
choices=processopts,
|
||||||
|
help=('Can be one of:' + ' | '.join(processopts)))
|
||||||
|
|
||||||
parser.add_argument('--force-focal',
|
parser.add_argument('--force-focal',
|
||||||
metavar='<positive float>',
|
metavar='<positive float>',
|
||||||
|
@ -59,7 +71,7 @@ parser.add_argument('--matcher-threshold',
|
||||||
type=float,
|
type=float,
|
||||||
help=('Ignore matched keypoints if the two images share '
|
help=('Ignore matched keypoints if the two images share '
|
||||||
'less than <float> percent of keypoints. Default:'
|
'less than <float> percent of keypoints. Default:'
|
||||||
' $(default)s'))
|
' $(default)s'))
|
||||||
|
|
||||||
parser.add_argument('--matcher-ratio',
|
parser.add_argument('--matcher-ratio',
|
||||||
metavar='<float>',
|
metavar='<float>',
|
||||||
|
|
Ładowanie…
Reference in New Issue