“Adicione o retângulo matplotlib” Respostas de código

Adicione o retângulo 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

Adicione o retângulo 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

Respostas semelhantes a “Adicione o retângulo matplotlib”

Perguntas semelhantes a “Adicione o retângulo matplotlib”

Mais respostas relacionadas para “Adicione o retângulo matplotlib” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código