Skip to content

Commit

Permalink
imshow matirx, axis removed
Browse files Browse the repository at this point in the history
  • Loading branch information
Jan Melchior authored and Jan Melchior committed Feb 8, 2018
1 parent e9ecb85 commit b563564
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pydeep/misc/visualization.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,8 @@ def imshow_matrix(matrix, windowtitle, interpolation='nearest'):
:param interpolation: Interpolation style
:type interpolation: string
"""
figure(windowtitle).suptitle(windowtitle)
figure(windowtitle).suptitle()
axis('off')
gray()
imshow(np.array(matrix, np.float64), interpolation=interpolation)

Expand Down

0 comments on commit b563564

Please sign in to comment.