We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 54d5f8e commit eba1a00Copy full SHA for eba1a00
stitching/__init__.py
@@ -1,3 +1,3 @@
1
from .stitcher import AffineStitcher, Stitcher # noqa: F401
2
3
-__version__ = "0.5.0"
+__version__ = "0.5.1"
stitching/cli/stitch.py
@@ -286,8 +286,8 @@ def main():
286
args_dict = vars(args)
287
288
# Extract In- and Output
289
- images = args_dict.pop("images")
290
- feature_masks = args_dict.pop("feature_masks")
+ images = Images.resolve_wildcards(args_dict.pop("images"))
+ feature_masks = Images.resolve_wildcards(args_dict.pop("feature_masks"))
291
292
verbose = args_dict.pop("verbose")
293
verbose_dir = args_dict.pop("verbose_dir")
0 commit comments