program to draw rectangle in python code example
Example 1: how to draw shape square in python turtle
import turtle
t = turtle.Turtle()
t.fillcolor('blue')
t.begin_fill()
for i in range(4):
t.forward(150)
t.right(90)
t.end_fill()
Example 2: python opencv draw rectangle
image = cv2.imread(path)
start_point = (5, 5)
end_point = (220, 220)
color = (255, 0, 0)
thickness = 2
image = cv2.rectangle(image, start_point, end_point, color, thickness)
Example 3: python draw rectangle on image
img = matplotlib. image. imread("./kite_logo.png")
figure, ax = pyplot. subplots(1)
rect = patches. Rectangle((125,100),50,25, edgecolor='r', facecolor="none")
ax. imshow(img) Displays an image.
ax. add_patch(rect) Add rectangle to image.