Skip to content

Commit

Permalink
try correcting tiling error
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosuc3m committed Jan 2, 2025
1 parent 0b82fc2 commit dbad53e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -556,7 +556,7 @@ public <T extends NativeType<T> & RealType<T>> RandomAccessibleInterval<T> getNt
long[] maxLim = new long[size.length];
for (int i = 0; i < size.length; i ++) maxLim[i] = minLim[i] + size[i] - 1;
RandomAccessibleInterval<T> tileRai = Views.interval(
Views.extendMirrorDouble(rai), new FinalInterval( minLim, maxLim ));
Views.extendZero(rai), new FinalInterval( minLim, maxLim ));
return tileRai;
}

Expand Down

0 comments on commit dbad53e

Please sign in to comment.