small_frame = cv2.resize (frame, (128,128)) cv2.error: ошибка OpenCV (3.4.5): (-215: утверждение не выполнено)! ssize.empty () в функции 'cv :: resize' - PullRequest
0 голосов
/ 04 февраля 2019

Я использую Python 3.6 и получаю эту ошибку

Traceback (последний вызов был последним): файл "C: \ Users \ mchaf \ Music \ face \ facerec_from_webcam_faster.py", строка49, в small_frame = cv2.resize (frame, (128,128)) cv2.error: OpenCV (3.4.5) C: \ projects \ opencv-python \ opencv \ modules \ imgproc \ src \ resize.cpp: 3784: ошибка:(-215: Утверждение не удалось)! Ssize.empty () в функции 'cv :: resize'

Что мне сделать, чтобы решить эту проблему?Вот мой код линии

from distutils.core import setup
import face_recognition
from cv2 import *
import subprocess
import time

video_capture = cv2.VideoCapture(0)

obama_image = face_recognition.load_image_file("obama.jpg")
obama_face_encoding = face_recognition.face_encodings(obama_image)[0]

biden_image = face_recognition.load_image_file("biden.jpg")
biden_face_encoding = face_recognition.face_encodings(biden_image)[0]

known_face_encodings = [
    obama_face_encoding,
    biden_face_encoding
]
known_face_names = [
    "Barack Obama",
    "Joe Biden"
]

face_locations = []
face_encodings = []
face_names = []
process_this_frame = True

while True:
    ret, frame = video_capture.read()

    small_frame = cv2.resize(frame, (128,128))

    rgb_small_frame = small_frame[:, :, ::-1]

    if process_this_frame:
        face_locations = face_recognition.face_locations(rgb_small_frame)
        face_encodings = face_recognition.face_encodings(rgb_small_frame, face_locations)

        face_names = []
        for face_encoding in face_encodings:
            matches = face_recognition.compare_faces(known_face_encodings, face_encoding)
            name = "Unknown"
            time.sleep(5)
            imshow("Operator",frame)
            video_capture.release()
            cv2.destroyAllWindows()
            subprocess.call([r'C:\Users\mchaf\Desktop\run.bat'])


            if True in matches:
                first_match_index = matches.index(True)
                name = known_face_names[first_match_index]

            face_names.append(name)

    process_this_frame = not process_this_frame


    for (top, right, bottom, left), name in zip(face_locations, face_names):
        top *= 4
        right *= 4
        bottom *= 4
        left *= 4

        cv2.rectangle(frame, (left, top), (right, bottom), (0, 0, 255), 2)

        cv2.rectangle(frame, (left, bottom - 35), (right, bottom), (0, 0, 255), cv2.FILLED)
        font = cv2.FONT_HERSHEY_DUPLEX
        cv2.putText(frame, name, (left + 6, bottom - 6), font, 1.0, (255, 255, 255), 1)

    cv2.imshow('Video', frame)

    if cv2.waitKey(1) & 0xFF == ord('q'):
        break

video_capture.release()
cv2.destroyAllWindows()

1 Ответ

0 голосов
/ 04 февраля 2019

Попробуйте перевести обработку кадра в это состояние

if ret:
    cv2.resize...

И удалите строку с

Video_capture.release()
cv2.destroyAllWindows()

Похоже, ваш кадр пуст, поэтому вы не можете изменить размер. Причина в том, что вы освобождаетезахват (вид отключения) с вашей веб-камеры.После освобождения вы хотите прочитать новый кадр, но он пуст

Ваш код явно скопирован из разных мест.Даже если вы исправите их, ваш код не будет работать.

Например:

...
name = "Unknown"
time.sleep(5) # Why sleep? 
imshow("Operator",frame) # OpenCV cv2 class is missing
video_capture.release() # Why you release the capture? - main error
cv2.destroyAllWindows()   # Why you destroy window if you will want to see result in the next loop
subprocess.call([r'C:\Users\mchaf\Desktop\run.bat'])
...
...