Risposte:
È possibile aggiungere una Rectangle
patch agli assi matplotlib.
Ad esempio (utilizzando l'immagine del tutorial qui ):
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
bandiera aRectangle
patches.Rectangle
dice che i primi due numeri sono The bottom and left rectangle coordinates
. Vedo qui che i primi due numeri, (50.100), corrispondono alla coordinata SUPERIORE e sinistra del rettangolo. Non ho capito bene.
Hai bisogno di usare le patch.
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')
Non sono necessari sottoprogetti e pyplot può visualizzare immagini PIL, quindi questo può essere ulteriormente semplificato:
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)
Oppure, la versione breve:
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'))
Secondo la mia comprensione matplotlib è una libreria di disegno.
Se si desidera modificare i dati dell'immagine (ad es. Disegnare un rettangolo su un'immagine), è possibile utilizzare ImageDraw , OpenCV di PIL o qualcosa di simile.
Ecco il metodo ImageDraw di PIL per disegnare un rettangolo .
Ecco uno dei metodi di OpenCV per disegnare un rettangolo .
La tua domanda era su Matplotlib, ma probabilmente avrebbe dovuto solo chiedere di disegnare un rettangolo su un'immagine.
Ecco un'altra domanda che affronta ciò che penso tu volessi sapere: disegna un rettangolo e un testo usando PIL