Skip to content

Commit

Permalink
Change name in visualization of heatmap
Browse files Browse the repository at this point in the history
  • Loading branch information
enrignagna committed Jan 18, 2021
1 parent d2dac13 commit 2d8c952
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/heatmap_visualization.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,9 @@ def __overlay_gradCAM(img, cam3):
def __vis_heatmap(cam, cam3, heatmap):
fig, ax = plt.subplots(1, 3, figsize=(15,15))
ax[0].imshow(cam)
ax[0].set_title("HeatMap")
ax[0].set_title("Cam")
ax[1].imshow(cam3)
ax[1].set_title("HeatMap Relu")
ax[1].set_title("Cam Relu")
ax[2].imshow(heatmap[0])
ax[2].set_title("Image with HeatMap")
plt.tight_layout()
Expand Down

0 comments on commit 2d8c952

Please sign in to comment.