From 83260a140f2400a899111f45ba1c8cf5ea950db8 Mon Sep 17 00:00:00 2001 From: Alex Date: Fri, 30 Aug 2024 05:56:06 -0700 Subject: [PATCH] Bump to latest updates --- docs/TPLOTS.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/TPLOTS.html b/docs/TPLOTS.html index a141281..3f0d18e 100644 --- a/docs/TPLOTS.html +++ b/docs/TPLOTS.html @@ -2065,7 +2065,7 @@
image_array = [] - for i in range(0, min(1, matrix.shape[0]-max(step, overlap)), overlap): + for i in range(0, max(1, matrix.shape[0]-max(step, overlap)), overlap): submatrix = matrix[i:i+step, :] @@ -2317,7 +2317,7 @@

Functions

image_array = [] - for i in range(0, min(1, matrix.shape[0]-max(step, overlap)), overlap): + for i in range(0, max(1, matrix.shape[0]-max(step, overlap)), overlap): submatrix = matrix[i:i+step, :]