EOX GitLab Instance

Skip to content
Snippets Groups Projects
Commit 8d62363f authored by Lubomir Dolezal's avatar Lubomir Dolezal
Browse files

fix path in stack step

parent 35808df8
No related branches found
No related tags found
No related merge requests found
......@@ -12,8 +12,7 @@ from ..util import replace_ext
def stack_bands_step(source_dir: os.PathLike, target_dir: os.PathLike, group_by: str=None, sort_by: str=None, order: List[str]=None):
""" Stack bands of the individual images
"""
filenames = glob(join(source_dir, '*/*.tif'), recursive=True)
filenames = glob(join(source_dir, '*.tif'), recursive=True)
# check if we have a group_by regex. If yes, use the first
# re-group to group by.
# Fallback is basename of file as groupname
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment