Opencv-python: VIDEOIO ERROR: V4L: can't open camera by index 0

Created on 10 Sep 2018  路  3Comments  路  Source: opencv/opencv-python

Hello,

I'm triggering a Python file with PHP.

$return = shell_exec("/usr/bin/python3.6 create.py 2>&1")

Python File

import numpy as np
import cv2

cap = cv2.VideoCapture(0)

while(True):

    ret, frame = cap.read()

    gray = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY)

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

cap.release()
cv2.destroyAllWindows()

Return this value

VIDEOIO ERROR: V4L: can't open camera by index 0

What is the problem?

OS: Ubuntu 18.04 x64
Python: 3.6.6
OpenCV: 3.4.2

Most helpful comment

Try with cv2.VideoCapture(-1). Please ask this kind of questions at http://answers.opencv.org/questions/ in the future.

All 3 comments

Try with cv2.VideoCapture(-1). Please ask this kind of questions at http://answers.opencv.org/questions/ in the future.

thanks to skvark for solving my problem. -1 is a solution for my code which I have written in ubuntu

Was this page helpful?
0 / 5 - 0 ratings

Related issues

demolpc picture demolpc  路  3Comments

Breakthrough picture Breakthrough  路  6Comments

zoonoo picture zoonoo  路  3Comments

ghimireadarsh picture ghimireadarsh  路  3Comments

ES-Alexander picture ES-Alexander  路  5Comments