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

วาดเส้นบนรูปภาพโดยใช้ OpenCV


ในโปรแกรมนี้ เราจะวาดเส้นอย่างง่ายบนรูปภาพโดยใช้ฟังก์ชัน Line() ของ OpenCV

ภาพต้นฉบับ

วาดเส้นบนรูปภาพโดยใช้ OpenCV

อัลกอริทึม

Step 1: Import cv2.
Step 2: Read the image using imread().
Step 3: Get the dimensions of the image using the image.shape method.
Step 4: Define starting point of the line.
Step 5: Define the end point of the line.
Step 6: Define the thickness of the line.
Step 7: Draw the line using the cv2.line() function and pass Step 3 to Step 4 as parameters.

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

import cv2

image = cv2.imread('testimage.jpg')
height, width, channels = image.shape
startpoint = (0, 0)
endpoint = (height, width)
thickness = 9
color = (255, 0, 0)
image = cv2.line(image, startpoint, endpoint, color, thickness)
cv2.imshow('Line', image)

ผลลัพธ์

วาดเส้นบนรูปภาพโดยใช้ OpenCV

คำอธิบาย

อย่างที่คุณเห็น เส้นสีน้ำเงินถูกวาดบนรูปภาพ