Skip to content
Snippets Groups Projects
Commit 8f9d2de8 authored by Hugo CHAUVET's avatar Hugo CHAUVET :bicyclist:
Browse files

Fix z selection bug

parent 732443c4
No related branches found
No related tags found
No related merge requests found
...@@ -456,8 +456,8 @@ def process_tiles(implus_tiles_stack, channel, z, implus_white_corr, implus_dark ...@@ -456,8 +456,8 @@ def process_tiles(implus_tiles_stack, channel, z, implus_white_corr, implus_dark
inter = Intervals.createMinMax(0, 0, channel, 0, inter = Intervals.createMinMax(0, 0, channel, 0,
xLen-1, yLen-1, channel, Ntiles-1) xLen-1, yLen-1, channel, Ntiles-1)
else: else:
inter = Intervals.createMinMax(0, 0, channel, zpos, inter = Intervals.createMinMax(0, 0, channel, z,
xLen-1, yLen-1, channel, zpos) xLen-1, yLen-1, channel, z)
# Date are x,y,channel # Date are x,y,channel
if data.numDimensions() == 3: if data.numDimensions() == 3:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment