Skip to content
This repository has been archived by the owner on Aug 2, 2023. It is now read-only.

Commit

Permalink
bump to v0.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
RRobert92 committed Nov 28, 2021
1 parent 3bbda9f commit d19fe11
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
6 changes: 3 additions & 3 deletions slcpy/build_graph.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from os import listdir
from os import listdir, getcwd
from os.path import join
from time import sleep

Expand All @@ -12,11 +12,11 @@

@click.command()
@click.option('-dir', '--dir_path',
default=os.getcwd() + r'\data',
default=getcwd() + r'\data',
help='Directory to the folder which contains *.tif files.',
show_default=True)
@click.option('-o', '--output',
default=os.getcwd() + r'\data' + r'\output',
default=getcwd() + r'\data' + r'\output',
help='Directory to the folder where results will be saved.',
show_default=True)
@click.option('-f', '--filter',
Expand Down
5 changes: 3 additions & 2 deletions slcpy/stitch_images.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
from os import getcwd
from os.path import join

import click
Expand All @@ -10,11 +11,11 @@

@click.command()
@click.option('-dir', '--dir_path',
default=os.getcwd() + r'\data',
default=getcwd() + r'\data',
help='Directory to the folder which contains *.tif files.',
show_default=True)
@click.option('-o', '--output',
default=os.getcwd() + r'\data' + r'\output',
default=getcwd() + r'\data' + r'\output',
help='Directory to the folder where results will be saved.',
show_default=True)
@click.option('-m', '--mask',
Expand Down

0 comments on commit d19fe11

Please sign in to comment.