python 은 plt 그림 을 사용 하여 그림 주위 의 흰 변 을 제거 하 는 방법

matplotlib.pyplot 로 그린 그림 은 표시 되 고 저 장 된 그림 주위 에 흰색 테두리 가 있어 제거 할 수 있 습 니 다.더 잘 보이 도록 그림 에 빨간색 상 자 를 넣 었 습 니 다.
코드

“` 
import matplotlib.pyplot as plt

fig, ax = plt.subplots() 
im = im[:, :, (2, 1, 0)] 
ax.imshow(im, aspect='equal') 
plt.axis(‘off') 
#           
height, width, channels = im.shape 
#   dpi=300,      =height*width 
fig.set_size_inches(width/100.0/3.0, height/100.0/3.0) 
plt.gca().xaxis.set_major_locator(plt.NullLocator()) 
plt.gca().yaxis.set_major_locator(plt.NullLocator()) 
plt.subplots_adjust(top=1,bottom=0,left=0,right=1,hspace=0,wspace=0) 
plt.margins(0,0)

#dpi       ,  300     ,            
plt.savefig(‘result.png', dpi=300)


이상 의 python 은 plt 그림 을 사용 하여 그림 주위 의 백 변 을 제거 하 는 방법 은 바로 작은 편집 이 여러분 에 게 공유 하 는 모든 내용 입 니 다.참고 하 시기 바 랍 니 다.여러분 들 도 많이 응원 해 주시 기 바 랍 니 다.

좋은 웹페이지 즐겨찾기