File tree 3 files changed +10
-3
lines changed
3 files changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -74,7 +74,8 @@ def run(self):
74
74
excludeCornerNeighbors = self .args ['excludeCornerNeighbors' ],
75
75
excludeSameLayerNeighbors = self .args ['excludeSameLayerNeighbors' ],
76
76
excludeCompletelyObscuredTiles = self .args [
77
- 'excludeCompletelyObscuredTiles' ])
77
+ 'excludeCompletelyObscuredTiles' ],
78
+ useRowColPositions = self .args ['useRowColPositions' ])
78
79
79
80
self .output ({'tile_pair_file' : tilepairJsonFile })
80
81
Original file line number Diff line number Diff line change @@ -65,6 +65,12 @@ class TilePairClientParameters(RenderParameters):
65
65
missing = True ,
66
66
description = "Exclude tiles that are completely "
67
67
"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" )
68
74
output_dir = OutputDir (
69
75
required = True ,
70
76
description = "Output directory path to save the tilepair json file" )
Original file line number Diff line number Diff line change 1
1
render-python >= 2.2.2
2
- marshmallow < 3.0
3
- argschema < 2.0
2
+ marshmallow
3
+ argschema
4
4
numpy
5
5
pillow
6
6
tifffile
You can’t perform that action at this time.
0 commit comments