【问题标题】:OpenCV(4.1.2) /io/opencv/modules/imgproc/src/color.cpp:182: error: (-215:Assertion failed) !_src.empty() in function 'cvtColor' in face detectionOpenCV(4.1.2) /io/opencv/modules/imgproc/src/color.cpp:182: 错误: (-215:Assertion failed) !_src.empty() in function 'cvtColor' in face detection
【发布时间】:2020-07-20 21:26:22
【问题描述】:

# -*- coding: utf-8 -*-
#face recognition

#import the libraries
import cv2

#loading the cascades
face_cascade = cv2.CascadeClassifier("Haarcascades/haarcascade_frontalface_default.xml")
eye_cascade = cv2.CascadeClassifie("Haarcascades/haarcascade_eye.xml")

#defining a function that will do the detections
def detect(gray, frame):
    faces = face_cascade.detectMultiScale(gray, 1.3, 5)
    for(x,y,w,h)in faces:
        cv2.rectangle(frame, (x,y), (x+w, y+h), (255,0,0), 2)
        rol_gray = gray[y:y+h, x:x+w]
        rol_color = frame[y:y+h, x:x+w]
        eyes = eye_cascade.detectMultiScale(rol_gray, 1.1, 3)
        for(ex, ey, ew, eh) in eyes:
            cv2.rectangle(rol_color, (ex, ey), (ex+ew, ey+eh), (0, 255, 0), 2)
    return frame
    
#doing some face Recognition with the webcam
video_capture = cv2.VideoCapture(0)
while True:
    _, frame = video_capture.read()
    gray = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY)
    canvas = detect(gray, frame)
    cv2.imshow('Video', canvas)
    if cv2.waitKey(1) & 0xFF == ord('q'):
        break
video_capture.release()
cv2.destroyAllWindows()

我在imshow 行中收到错误并给我错误:

 OpenCV(4.1.2) /io/opencv/modules/imgproc/src/color.cpp:182: error: (-215:Assertion failed) !_src.empty() in function 'cvtColor' in face detection

【问题讨论】:

  • 您能否就您的问题提供一些背景信息以及您尝试过的一些解释?

标签: python opencv detection face


【解决方案1】:

您需要提供CascadeClassifier的完整路径

例如:

#loading the cascades
face_cascade = cv2.CascadeClassifier("/Users/ahmettavli/Downloads/opencv/data/haarcascades/haarcascade_frontalface_default.xml")
eye_cascade = cv2.CascadeClassifie("/Users/ahmettavli/Downloads/opencv/data/haarcascades/haarcascade_eye.xml")

虽然当你改变时,代码可以工作但找不到人脸。

因此你应该添加:

if len(faces) > 0:

例如:

if len(faces) > 0:
    for (x, y, w, h) in faces:
        cv2.rectangle(frame, (x, y), (x + w, y + h), (255, 0, 0), 2)
        rol_gray = gray[y:y + h, x:x + w]
        rol_color = frame[y:y + h, x:x + w]
        eyes = eye_cascade.detectMultiScale(rol_gray, 1.1, 3)

【讨论】:

    猜你喜欢
    • 2019-11-12
    • 2022-07-18
    • 2019-06-26
    • 2021-02-08
    • 2021-07-12
    • 2021-07-30
    • 2021-11-28
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多