OpenCV+Python人脸检测器更改矩形大小(大25%)

2024-05-18 11:40:38 发布

您现在位置:Python中文网/ 问答频道 /正文

我想改变这个人脸检测器的矩形大小,我需要它大25%:

import cv2

# Load the cascade
face_cascade = cv2.CascadeClassifier('haarcascade_frontalface_default.xml')
# Read the input image
img = cv2.imread('test.jpg')
# Convert into grayscale
gray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)
# Detect faces
faces = face_cascade.detectMultiScale(gray, 1.1, 4)
# Draw rectangle around the faces
for (x, y, w, h) in faces:
    cv2.rectangle(img, (x, y), (x+w, y+h), (255, 0, 0), 2)
# Display the output
cv2.imshow('img', img)
cv2.waitKey()

xml:https://raw.githubusercontent.com/opencv/opencv/master/data/haarcascades/haarcascade_frontalface_default.xml

但我不知道怎么做


Tags: thedefaultimgxmlcv2opencv检测器cascade