Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
145 views
in Technique[技术] by (71.8m points)

Why isn't Opencv-python showing my camera feed?

Ok so I wanted to open my webcam feed in opencv python. When I run the code, it opens up a blank window and later says "Python has stopped working."I want to know why is it happening and how do I solve it !!!! Here is the code:

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()

I am using Spyder which I installed from Anaconda. I also tried the same code on jupyter notebook and also on the original python 3.8 software. The results were same.Here is an image of what I am facing:Problem image. For any clarification...please comment!!!

question from:https://stackoverflow.com/questions/65641208/why-isnt-opencv-python-showing-my-camera-feed

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

No problem with the code . Make sure you have a webcam in which you are running the program.

cv2.VideoCapture(index)

The index in videoCapture indicates video capturing device to open. To open default camera 0 is used.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...