принимая изображения с веб-камеры - PullRequest
1 голос
/ 25 марта 2020

У меня есть этот скрипт для захвата изображений с веб-камеры, но он не сохраняет изображения, я не знаю почему. Я получаю эту ошибку " Traceback (последний последний вызов): файл" C: / Users / Iram / .PyCharmCE2019.3 / config / scratches / scratch_5.py ", строка 26, серым цветом = cv2. cvtColor (img_, cv2.COLOR_BGR2GRAY) cv2.error: OpenCV (4.2.0) C: \ projects \ opencv-python \ opencv \ modules \ imgproc \ src \ color. cpp: 182: ошибка: (-215 : Утверждение не выполнено)! _Sr c .empty () в функции 'cv :: cvtColor' [WARN: 0] global C: \ projects \ opencv-python \ opencv \ modules \ videoio \ src \ cap_msmf. cpp (674) SourceReaderCB :: ~ SourceReaderCB завершает работу asyn c callback"

Мой код

import cv2
import datetime
i = 1
key = cv2.waitKey(1)
webcam = cv2.VideoCapture(0)
while True:
    try:
        check, frame = webcam.read()
        print(check)  # prints true as long as the webcam is running
        print(frame)  # prints matrix values of each framecd
        cv2.imshow("Capturing", frame)
        key = cv2.waitKey(1)
        if key == ord('s'):
            cv2.imwrite(filename='saved_img.jpg,%Y-%b-%d %H:%M:%S', img=frame)
            #print('Timestamp: {:%Y-%b-%d %H:%M:%S}'.format(datetime.datetime.now()))
            i += 1
            print('%i')

            # webcam.release()
            img_new = cv2.imread('saved_img.jpg,%Y-%b-%d %H:%M:%S', cv2.IMREAD_GRAYSCALE)
            # cv2.imshow("Captured Image", img_new)
            # cv2.waitKey(1925)
            print("Processing image...")
            img_ = cv2.imread('saved_img.jpg,%Y-%b-%d %H:%M:%S', cv2.IMREAD_ANYCOLOR)
            print("Converting RGB image to grayscale...")
            gray = cv2.cvtColor(img_, cv2.COLOR_BGR2GRAY)
            print("Converted RGB image to grayscale...")
            print("Resizing image to 28x28 scale...")
            img_ = cv2.resize(gray, (28, 28))
            print("Resized...")
            img_resized = cv2.imwrite(filename='saved_img-final.jpg', img=img_)
            print("Image saved!")

        elif key == ord('q'):
            print("Turning off camera.")
            webcam.release()
            print("Camera off.")
            print("Program ended.")
            cv2.destroyAllWindows()
            break

    except(KeyboardInterrupt):
        print("Turning off camera.")
        webcam.release()
        print("Camera off.")
        print("Program ended.")
        cv2.destroyAllWindows()
        camera.release()

        break
        camera.release()
        cv2.destroyAllWindows()

Кто-нибудь может мне помочь в этом?

1 Ответ

0 голосов
/ 26 марта 2020

Источником ошибки является то, что вы используете имя файла с символом двоеточие :.

cv2.imwrite(filename='saved_img.jpg,%Y-%b-%d %H:%M:%S', img=frame)

Имя файла, содержащее символ двоеточия, недопустимо.

  • Изображение (кадр) не записывается в файл.
  • Чтение изображения img_ = cv2.imread('saved_img.jpg,%Y-%b-%d %H:%M:%S', cv2.IMREAD_ANYCOLOR) возвращает None.
  • Передача значения None в cv2.cvtColor вызывает исключение OpenCV.

Предлагаемое исправление:

  • Использование допустимое имя файла, например: file_name = datetime.datetime.now().strftime('%Y-%m-%d_%H-%M- %S.jpg')
  • Использование переменной file_name при чтении и писать.
  • Я также предлагаю проверить, что check равно True перед использованием frame.

Я создал пример кода для тестирования.
Код генерирует синтетический c видеофайл и считывает кадры из сгенерированного файла, а не с камеры.

Вот код тестирования:

import numpy as np
import cv2
import datetime

intput_filename = 'input_vid.avi'

# Generate synthetic video files to be used as input:
###############################################################################
width, height, n_frames = 640, 480, 100  # 100 frames, resolution 640x480

# Use motion JPEG codec (for testing)
synthetic_out = cv2.VideoWriter(intput_filename, cv2.VideoWriter_fourcc(*'MJPG'), 25, (width, height))

for i in range(n_frames):
    img = np.full((height, width, 3), 60, np.uint8)
    cv2.putText(img, str(i+1), (width//2-100*len(str(i+1)), height//2+100), cv2.FONT_HERSHEY_DUPLEX, 10, (30, 255, 30), 20)  # Green number
    synthetic_out.write(img)

synthetic_out.release()
###############################################################################


i = 1
key = cv2.waitKey(1)

# Read video from file instead of from camera (for testing)
webcam = cv2.VideoCapture(intput_filename)

while True:
    try:
        check, frame = webcam.read()
        print(check)  # prints true as long as the webcam is running

        if check:
            print(frame)  # prints matrix values of each frame
            cv2.imshow("Capturing", frame)

            if key == ord('s'):
                file_name = datetime.datetime.now().strftime('%Y-%m-%d_%H-%M-%S.jpg')

                cv2.imwrite(file_name, img=frame)
                #print('Timestamp: {:%Y-%b-%d %H:%M:%S}'.format(datetime.datetime.now()))
                i += 1
                print(str(i))

                # webcam.release()
                img_new = cv2.imread(file_name, cv2.IMREAD_GRAYSCALE)
                # cv2.imshow("Captured Image", img_new)
                # cv2.waitKey(1925)
                print("Processing image...")
                img_ = cv2.imread(file_name, cv2.IMREAD_ANYCOLOR)
                print("Converting RGB image to grayscale...")
                gray = cv2.cvtColor(img_, cv2.COLOR_BGR2GRAY)
                print("Converted RGB image to grayscale...")
                print("Resizing image to 28x28 scale...")
                img_ = cv2.resize(gray, (28, 28))
                print("Resized...")
                img_resized = cv2.imwrite(filename='saved_img-final.jpg', img=img_)
                print("Image saved!")

        #key = cv2.waitKey(1)
        key = cv2.waitKey(100)  # Wait 100 msec (just for testing).

        if key == ord('q'):
            print("Turning off camera.")
            print("Camera off.")
            print("Program ended.")
            break

    except(KeyboardInterrupt):
        print("Turning off camera.")
        print("Camera off.")
        print("Program ended.")
        break

webcam.release()
cv2.destroyAllWindows()
...