Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

pyplot rectangle over image

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') # Coordinates: (left, top), width, height

# Add the patch to the Axes
ax.add_patch(rect)

plt.show()
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #pyplot #rectangle #image
ADD COMMENT
Topic
Name
7+8 =