Skip to content

Commit 5e36f65

Browse files
authored
Merge pull request #253 from AllenInstitute/develop
Merge develop
2 parents c29b212 + a182b35 commit 5e36f65

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

asap/pointmatch/create_tilepairs.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,8 @@ def run(self):
7474
excludeCornerNeighbors=self.args['excludeCornerNeighbors'],
7575
excludeSameLayerNeighbors=self.args['excludeSameLayerNeighbors'],
7676
excludeCompletelyObscuredTiles=self.args[
77-
'excludeCompletelyObscuredTiles'])
77+
'excludeCompletelyObscuredTiles'],
78+
useRowColPositions=self.args['useRowColPositions'])
7879

7980
self.output({'tile_pair_file': tilepairJsonFile})
8081

asap/pointmatch/schemas.py

+6
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,12 @@ class TilePairClientParameters(RenderParameters):
6565
missing=True,
6666
description="Exclude tiles that are completely "
6767
"obscured by reacquired tiles")
68+
useRowColPositions = Bool(
69+
required=False,
70+
default=False,
71+
missing=False,
72+
description="For montage pairs (zNeighborDistance == 0) "
73+
"use layout imageRow and imageCol values instead of tile bounds to identify neighbor tiles")
6874
output_dir = OutputDir(
6975
required=True,
7076
description="Output directory path to save the tilepair json file")

requirements.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
render-python>=2.2.2
2-
marshmallow<3.0
3-
argschema<2.0
2+
marshmallow
3+
argschema
44
numpy
55
pillow
66
tifffile

0 commit comments

Comments
 (0)