Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Bobholamovic committed May 18, 2023
1 parent 3fa21dd commit e810db4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tools/match.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 82,7 @@ def match(image1_path,


if __name__ == "__main__":
parser = argparse.ArgumentParser(description="input parameters")
parser = argparse.ArgumentParser()
parser.add_argument('--image1_path', type=str, required=True, \
help="Path of time1 image (with geoinfo).")
parser.add_argument('--image2_path', type=str, required=True, \
Expand Down
2 changes: 1 addition & 1 deletion tools/split.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 70,7 @@ def split_data(image_path, mask_path, block_size, save_dir):


if __name__ == "__main__":
parser = argparse.ArgumentParser(description="input parameters")
parser = argparse.ArgumentParser()
parser.add_argument("--image_path", type=str, required=True, \
help="Path of input image.")
parser.add_argument("--mask_path", type=str, default=None, \
Expand Down

0 comments on commit e810db4

Please sign in to comment.