mirror of
https://github.com/opencv/opencv.git
synced 2025-08-06 06:26:29 +08:00
Merge pull request #17485 from sitic:stitching
This commit is contained in:
commit
08a3eef62a
@ -103,19 +103,19 @@ parser.add_argument(
|
|||||||
)
|
)
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
'--features', action='store', default=list(FEATURES_FIND_CHOICES.keys())[0],
|
'--features', action='store', default=list(FEATURES_FIND_CHOICES.keys())[0],
|
||||||
help="Type of features used for images matching. The default is '%s'." % FEATURES_FIND_CHOICES.keys(),
|
help="Type of features used for images matching. The default is '%s'." % list(FEATURES_FIND_CHOICES.keys())[0],
|
||||||
choices=FEATURES_FIND_CHOICES.keys(),
|
choices=FEATURES_FIND_CHOICES.keys(),
|
||||||
type=str, dest='features'
|
type=str, dest='features'
|
||||||
)
|
)
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
'--matcher', action='store', default='homography',
|
'--matcher', action='store', default='homography',
|
||||||
help="Matcher used for pairwise image matching.",
|
help="Matcher used for pairwise image matching. The default is 'homography'.",
|
||||||
choices=('homography', 'affine'),
|
choices=('homography', 'affine'),
|
||||||
type=str, dest='matcher'
|
type=str, dest='matcher'
|
||||||
)
|
)
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
'--estimator', action='store', default=list(ESTIMATOR_CHOICES.keys())[0],
|
'--estimator', action='store', default=list(ESTIMATOR_CHOICES.keys())[0],
|
||||||
help="Type of estimator used for transformation estimation.",
|
help="Type of estimator used for transformation estimation. The default is '%s'." % list(ESTIMATOR_CHOICES.keys())[0],
|
||||||
choices=ESTIMATOR_CHOICES.keys(),
|
choices=ESTIMATOR_CHOICES.keys(),
|
||||||
type=str, dest='estimator'
|
type=str, dest='estimator'
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user