이 프로그램에서는 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)
출력