With larger images, it can take some time to generate the heatmap.

now contains a terminal message to indicate this.
This commit is contained in:
gabriel venberg 2021-03-08 20:55:19 -06:00
parent 4fe916a23b
commit 6335c4b474

View file

@ -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)