Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Python

วาดรูปสี่เหลี่ยมผืนผ้าบนรูปภาพโดยใช้ OpenCV


ในโปรแกรมนี้ เราจะวาดรูปสี่เหลี่ยมผืนผ้าโดยใช้ฟังก์ชันสี่เหลี่ยมผืนผ้าของ OpenCV () ฟังก์ชันนี้ใช้พารามิเตอร์บางอย่าง เช่น พิกัดเริ่มต้น พิกัดสิ้นสุด สีและความหนา และตัวรูปภาพเอง

ภาพต้นฉบับ

วาดรูปสี่เหลี่ยมผืนผ้าบนรูปภาพโดยใช้ OpenCV

อัลกอริทึม

Step 1: Import cv2.
Step 2: Read the image using imread().
Step 3: Define the starting coordinates.
Step 5: Define the ending coordinates.
Step 6: Define the color and the thickness.
Step 7: Draw the rectangle using the cv2.reactangle() function.
Step 8: Display the rectangle.

โค้ดตัวอย่าง

import cv2

image = cv2.imread('testimage.jpg')
height, width, channels = image.shape
start_point = (0,0)
end_point = (width, height)
color = (0,0,255)
thickness = 5

image = cv2.rectangle(image, start_point, end_point, color, thickness)
cv2.imshow('Rectangle',image)

ผลลัพธ์

วาดรูปสี่เหลี่ยมผืนผ้าบนรูปภาพโดยใช้ OpenCV