回答:
Rectangle
matplotlib Axesにパッチを追加できます。
例(ここのチュートリアルの画像を使用):
import matplotlib.pyplot as plt
import matplotlib.patches as patches
from PIL import Image
import numpy as np
im = np.array(Image.open('stinkbug.png'), dtype=np.uint8)
# Create figure and axes
fig,ax = plt.subplots(1)
# Display the image
ax.imshow(im)
# Create a Rectangle patch
rect = patches.Rectangle((50,100),40,30,linewidth=1,edgecolor='r',facecolor='none')
# Add the patch to the Axes
ax.add_patch(rect)
plt.show()
fill=False
フラグを渡し てくださいRectangle
patches.Rectangle
は、最初の2つの数値はと書かれていますThe bottom and left rectangle coordinates
。ここで、最初の2つの数値(50,100)が長方形の上部座標と左座標に対応していることがわかります。よくわかりません。
パッチを使用する必要があります。
import matplotlib.pyplot as plt
import matplotlib.patches as patches
fig2 = plt.figure()
ax2 = fig2.add_subplot(111, aspect='equal')
ax2.add_patch(
patches.Rectangle(
(0.1, 0.1),
0.5,
0.5,
fill=False # remove background
) )
fig2.savefig('rect2.png', dpi=90, bbox_inches='tight')
サブプロットの必要はなく、pyplotはPIL画像を表示できるため、これをさらに簡略化できます。
import matplotlib.pyplot as plt
from matplotlib.patches import Rectangle
from PIL import Image
im = Image.open('stinkbug.png')
# Display the image
plt.imshow(im)
# Get the current reference
ax = plt.gca()
# Create a Rectangle patch
rect = Rectangle((50,100),40,30,linewidth=1,edgecolor='r',facecolor='none')
# Add the patch to the Axes
ax.add_patch(rect)
または、短いバージョン:
import matplotlib.pyplot as plt
from matplotlib.patches import Rectangle
from PIL import Image
# Display the image
plt.imshow(Image.open('stinkbug.png'))
# Add the patch to the Axes
plt.gca().add_patch(Rectangle((50,100),40,30,linewidth=1,edgecolor='r',facecolor='none'))
私の理解から、matplotlibはプロットライブラリです。
画像データを変更したい場合(たとえば、画像上に長方形を描画する場合)は、PILのImageDraw、OpenCVなどを使用できます。
長方形を描画するためのPILのImageDrawメソッドを次に示します。
以下は、長方形を描画するためのOpenCVのメソッドの 1つです。
あなたの質問はMatplotlibについて尋ねましたが、おそらく画像に長方形を描くことについて尋ねるべきでした。
ここに、あなたが知りたいと思ったことに対処する別の質問があります 。PILを使用して長方形とその中にテキストを描画します。