Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

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()
Source by pythonmatplotlibtips.blogspot.com #
 
PREVIOUS NEXT
Tagged: #python #image #plot
ADD COMMENT
Topic
Name
6+2 =