Skip to content

Commit

Permalink
Merge pull request #102 from yfukai/change_overlap_prob_uniform_thres…
Browse files Browse the repository at this point in the history
…hold

Change overlap prob uniform threshold
  • Loading branch information
yfukai authored Sep 22, 2021
2 parents c7b3fdd + 3204170 commit 720f9c3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "m2stitch"
version = "0.2.0"
version = "0.2.1"
description = "M2Stitch"
authors = ["Yohsuke Fukai <[email protected]>"]
license = "MIT"
Expand Down
1 change: 1 addition & 0 deletions src/m2stitch/stitching.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ def stitch_images(
images = np.array(images)
assert images.shape[0] == len(rows)
assert images.shape[0] == len(cols)
assert 0 <= overlap_prob_uniform_threshold and overlap_prob_uniform_threshold <= 100

W, H = images.shape[1:]

Expand Down

0 comments on commit 720f9c3

Please sign in to comment.