Ask Your Question

Ghantey's profile - activity

2018-09-16 02:35:55 -0600 asked a question Know the number of webcam

Know the number of webcam I want to write a script which detects the number of webcam using python script. I have been s

2018-09-13 01:57:10 -0600 commented answer How to check if camera is opened by any application

here if not cam.isOpened(): # It means that my camera is being used by other appliction like Chrome Am I right b

2018-09-13 01:34:17 -0600 commented answer How to check if camera is opened by any application

import cv2 cam = cv2.VideoCapture(0) if not cam.isOpened(): print('Cam is not available') else: print('Cam is

2018-09-13 01:33:55 -0600 commented answer How to check if camera is opened by any application

import cv2 cam = cv2.VideoCapture(0) if not cam.isOpened(): print('Cam is not available') else: print('Cam is

2018-09-13 01:33:42 -0600 commented answer How to check if camera is opened by any application

import cv2 cam = cv2.VideoCapture(0) if not cam.isOpened(): print('Cam is not available') else: print('Cam is

2018-09-13 01:32:54 -0600 commented answer How to check if camera is opened by any application

import cv2 cam = cv2.VideoCapture(0) if not cam.isOpened(): print('Cam is not available') else: print('Cam is

2018-09-13 01:32:42 -0600 commented answer How to check if camera is opened by any application

import cv2 cam = cv2.VideoCapture(0) if not cam.isOpened(): print('Cam is not available') else: print('Cam is

2018-09-12 12:46:27 -0600 asked a question How to check if camera is opened by any application

How to check if camera is opened by any application Cv2 module does not capture any image if my camera is used by other

2018-09-08 00:38:55 -0600 commented question Got fatal error running opencv program

I have installed opencv by pip install opencv-python. And I have edited my question with my code.

2018-09-08 00:37:33 -0600 received badge  Editor (source)
2018-09-08 00:37:33 -0600 edited question Got fatal error running opencv program

Got fatal error running opencv program I have written a python script that takes screenshot of the screen and takes pict

2018-09-08 00:36:33 -0600 commented question Got fatal error running opencv program

I have installed opencv by pip install opencv-python.

2018-09-07 22:29:05 -0600 asked a question Got fatal error running opencv program

Got fatal error running opencv program I have written a python script that takes screenshot of the screen and takes pict