繁体   English   中英

如何修复打开的cv2 cam避免启动时崩溃?

[英]How to fix open cv2 cam from crashing on startup?

我有用于识别手势的机器学习代码。 它使用网络摄像头检测手势。 但是问题是,每当我运行此代码时,它都会打开网络摄像头(可正常工作一秒钟),并立即崩溃,并显示错误“”未响应。 这是我的opencv.py

import cv2
import numpy as np
from keras.models import load_model
from skimage.transform import resize, pyramid_reduce

model = load_model('model.h5')


while True:  
    cam_capture = cv2.VideoCapture(0)
    _, image_frame = cam_capture.read()  
    # Select ROI
    im2 = crop_image(image_frame, 300,300,300,300)
    image_grayscale = cv2.cvtColor(im2, cv2.COLOR_BGR2GRAY)
    image_grayscale_blurred = cv2.GaussianBlur(image_grayscale, (15,15), 0)


    #resized_img = image_resize(image_grayscale_blurred, width = 28, height = 28, inter = cv2.INTER_AREA) 
    #resized_img = keras_process_image(image_grayscale_blurred)
    resized_img = cv2.resize(image_grayscale_blurred,(28,28))
    #ar = np.array(resized_img)
    ar = resized_img.reshape(1,784)

    pred_probab, pred_class = keras_predict(model, ar )
    print(pred_class, pred_probab)



    # Display cropped image

    cv2.imshow("Image2",im2)
    cv2.imshow("Image4",resized_img)
    cv2.imshow("Image3",image_grayscale_blurred)

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


cam_capture.release()
cv2.destroyAllWindows()

我已经删除了一些冗余代码。 我的主文件是ROIinOpenCv.py

import cv2
import numpy as np
from keras.models import load_model
from skimage.transform import resize, pyramid_reduce

model = load_model('model.h5')

def get_square(image, square_size):

    height, width = image.shape    
    if(height > width):
      differ = height
    else:
      differ = width
    differ += 4


    mask = np.zeros((differ, differ), dtype = "uint8")

    x_pos = int((differ - width) / 2)
    y_pos = int((differ - height) / 2)


    mask[y_pos: y_pos + height, x_pos: x_pos + width] = image[0: height, 0: width]


    if differ / square_size > 1:
      mask = pyramid_reduce(mask, differ / square_size)
    else:
      mask = cv2.resize(mask, (square_size, square_size), interpolation = cv2.INTER_AREA)
    return mask


def keras_predict(model, image):
    data = np.asarray( image, dtype="int32" )

    pred_probab = model.predict(data)[0]
    pred_class = list(pred_probab).index(max(pred_probab))
    return max(pred_probab), pred_class

def keras_process_image(img):

    image_x = 28
    image_y = 28
    #img = cv2.resize(img, (28,28), interpolation = cv2.INTER_AREA)
    img = get_square(img, 28)
    img = np.reshape(img, (image_x, image_y))


    return img


def crop_image(image, x, y, width, height):
    return image[y:y + height, x:x + width]

while True:  
    cam_capture = cv2.VideoCapture(0)
    _, image_frame = cam_capture.read()  
    # Select ROI
    im2 = crop_image(image_frame, 300,300,300,300)
    image_grayscale = cv2.cvtColor(im2, cv2.COLOR_BGR2GRAY)
    image_grayscale_blurred = cv2.GaussianBlur(image_grayscale, (15,15), 0)


    #resized_img = image_resize(image_grayscale_blurred, width = 28, height = 28, inter = cv2.INTER_AREA) 
    #resized_img = keras_process_image(image_grayscale_blurred)
    resized_img = cv2.resize(image_grayscale_blurred,(28,28))
    #ar = np.array(resized_img)
    ar = resized_img.reshape(1,784)

    pred_probab, pred_class = keras_predict(model, ar )
    print(pred_class, pred_probab)



    # Display cropped image

    cv2.imshow("Image2",im2)
    cv2.imshow("Image4",resized_img)
    cv2.imshow("Image3",image_grayscale_blurred)

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


cam_capture.release()
cv2.destroyAllWindows()

ps:我正在使用Ubuntu,您认为在任何情况下授予访问网络摄像头的权限都会出错吗?

您在while loop每个迭代中都打开相机。 那就是导致错误。 解决方法是在while loop之外创建cam_capture对象。 请参考以下内容。

import cv2
import numpy as np
from keras.models import load_model
from skimage.transform import resize, pyramid_reduce

model = load_model('model.h5')

cam_capture = cv2.VideoCapture(0)  # create camera object outside while-loop

while True:
    _, image_frame = cam_capture.read()

    # Select ROI
    im2 = crop_image(image_frame, 300,300,300,300)
    image_grayscale = cv2.cvtColor(im2, cv2.COLOR_BGR2GRAY)
    image_grayscale_blurred = cv2.GaussianBlur(image_grayscale, (15,15), 0)

    resized_img = cv2.resize(image_grayscale_blurred,(28,28))

    ar = resized_img.reshape(1,784)

    pred_probab, pred_class = keras_predict(model, ar )
    print(pred_class, pred_probab)

    # Display cropped image

    cv2.imshow("Image2",im2)
    cv2.imshow("Image4",resized_img)
    cv2.imshow("Image3",image_grayscale_blurred)

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

cam_capture.release()
cv2.destroyAllWindows()

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM