From 6335c4b474832ada732fd919bd8455f48fffa3bd Mon Sep 17 00:00:00 2001 From: gabriel venberg Date: Mon, 8 Mar 2021 20:55:19 -0600 Subject: [PATCH] With larger images, it can take some time to generate the heatmap. now contains a terminal message to indicate this. --- outputHightMap.py | 1 + 1 file changed, 1 insertion(+) diff --git a/outputHightMap.py b/outputHightMap.py index ab5837a..cf2c630 100755 --- a/outputHightMap.py +++ b/outputHightMap.py @@ -88,6 +88,7 @@ for i in range(len(points)): logging.debug(f'imageArray is {imageArray}') +print('processed all points. generating heatmap.') heatMap = sns.heatmap(imageArray, center=(np.max(imageArray)+np.min(imageArray))/2, robust=True, square=True) heatMapFig = heatMap.get_figure() heatMapFig.savefig(outFile)