-
Notifications
You must be signed in to change notification settings - Fork 101
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Getting 215 assertion failed!! on line 81!! #4
Comments
Unable to get camera on -1 |
Hii, Thanks In Advance |
Since your camera is not capturing video and returning None which is raising an exception in typecast. LINUX/MAC: WINDOWS:
|
try 0 as argument... In linux it take 0 for webcam |
Sir its fix now that's why i delete that comment and i want to thanks to
you and give req ti you on linkdin but now i thanks to you on email😅😅
…On Mon, 27 Jul 2020, 15:10 CHANDRA BHUSHAN, ***@***.***> wrote:
Since your camera is not capturing video and returning *None* which is
raising an exception in typecast.
You need to set the correct camera path to resolve this.
*LINUX/MAC:*
run this in your console ls -ltrh /dev/video*
it will show you the list of video device in your computer like
/dev/video0
then replace line 67: video_capture = cv2.VideoCapture(-1) to video_capture
= cv2.VideoCapture('dev/video0')
*WINDOWS:*
Run this following camera code and check available device id and use that
in cv2.VideoCapture(id)
cams_test = 10
for id in range(0, cams_test): //if you don't find it please check your camera if it is working or not
cap = cv2.VideoCapture(id)
test, frame = cap.read()
if test:
print("id : "+str(id)+" /// result: "+str(test))
cap.release()
try 0 as argument... In linux it take 0 for webcam
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#4 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AOLCTZERN6SBZXFPYDJUBDTR5VDSRANCNFSM4PIACULA>
.
|
C:\Users\Dell\Desktop\new web\movement-tracking-master>movement-v1.py I am facing this problem please help |
I was having similar issues and the solutions above did not resolve this alone. In order to get this to work, I needed to install opencv-python-headless instead of opencv-python and change the -1 to 1. Sharing here in case others run into the same thing. |
Hiii,
Yes i already tried it by passing 0 as argument it is working fine now.
Thanks
…On Mon, 27 Jul 2020, 1:52 pm Sahil Sharma, ***@***.***> wrote:
hii,
down and right keys doing great function but left and up are not perform
well well, can you tell me how can I optimized it because most of the time
it goes for down key
can you please me?
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#4 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AFC7JFVQFE4PUXB3GL2BBSLR5U2NVANCNFSM4PIACULA>
.
|
Hi , I am newbie to python.I just saw linkedin and try to setup and run this code. getting an error searched Stackoverlow not solved yet.
Traceback (most recent call last):
File "movement-v2.py", line 81, in
img, nose_cords = detect_nose(img, faceCascade)
File "movement-v2.py", line 10, in detect_nose
gray_img = cv2.cvtColor(img, cv2.COLOR_BAYER_BG2RGB)
cv2.error: OpenCV(4.3.0) /Users/travis/build/skvark/opencv-python/opencv/modules/imgproc/src/color.cpp:182: error: (-215:Assertion failed) !_src.empty() in function 'cvtColor'
can you please help?
Thanks in Advance.
The text was updated successfully, but these errors were encountered: