Answers for "python image plot"

0

python image plot

plt.imshow(img)
Posted by: Guest on March-16-2022
0

python image plot

fig, ax = plt.subplots()
ax.imshow(img)
ax.spines['top'].set_visible(False)
ax.spines['left'].set_visible(False)
ax.spines['bottom'].set_visible(False)
ax.spines['right'].set_visible(False)
ax.set_xticks([])
ax.set_yticks([])
plt.show()
Posted by: Guest on March-16-2022

Python Answers by Framework

Browse Popular Code Answers by Language