Diff of /ViTPose/imshow.py [000000] .. [c1b1c5]

Switch to unified view

a b/ViTPose/imshow.py
1
import matplotlib.pyplot as plt
2
3
img_1 = plt.imread('vis_results/vis_man2.jpg')
4
5
plt.imshow(img_1)
6
7
plt.show()