“Fügen Sie Rechteck Matplotlib hinzu” Code-Antworten

Fügen Sie Rechteck Matplotlib hinzu

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

Fügen Sie Rechteck Matplotlib hinzu


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

Ähnliche Antworten wie “Fügen Sie Rechteck Matplotlib hinzu”

Fragen ähnlich wie “Fügen Sie Rechteck Matplotlib hinzu”

Weitere verwandte Antworten zu “Fügen Sie Rechteck Matplotlib hinzu” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen