“Ajouter le rectangle matplotlib” Réponses codées

Ajouter le rectangle matplotlib

import matplotlib.pyplot as plt
import matplotlib.patches as patches
from PIL import Image

im = Image.open('stinkbug.png')

# Create figure and axes
fig, ax = plt.subplots()

# 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()
HotFlow

Ajouter le rectangle matplotlib


import matplotlib.pyplot as plt
import matplotlib.patches as patches
from PIL import Image

im = Image.open('stinkbug.png')

# Create figure and axes
fig, ax = plt.subplots()

# 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()

Foolish Flatworm

Réponses similaires à “Ajouter le rectangle matplotlib”

Questions similaires à “Ajouter le rectangle matplotlib”

Plus de réponses similaires à “Ajouter le rectangle matplotlib” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code