w10 driver
Posted: 14 February 2018 12:53 AM   [ Ignore ]
New Member
Rank
Total Posts:  2
Joined  2018-02-07

When I connect the cam it shows up in the device manager as “USB Camera-B4.09.24.1” and it says it’s using a Microsoft driver, 2017-09.28, version 10.0.16299.15
Cam is working with the CL-Eye Test application but not e.g. with the example solution “CLEyeMulticamWPFTest” (no PS3 cam found)
In the CLEye-SDK folders I do not see a driver.
Would like to capture frames with python 3.6/opencv like this:  cap = cv2.VideoCapture(0)
What is my misunderstanding?

Profile
 
 
Posted: 17 February 2018 04:01 AM   [ Ignore ]   [ # 1 ]
New Member
Rank
Total Posts:  2
Joined  2018-02-07

Patience and looking around pays
Downloaded first the driver from the code laboratories page (3 $, affordable).
In my vs 2017 project I switched from my python 3.6 64 bit to the 3.6 32 bit environment. If you never did that, microsoft has a nice tutorial how to have multiple python environments in parallel and how to bind your code to the one that works best for you.
Now my code started to work with the ps3 eye cam

cap cv2.VideoCapture(0)
retimg cap.read()
if 
ret:
      
cv2.imshow("image"img)
      
cv2.waitKey(0
Profile
 
 
 
 


RSS 2.0     Atom Feed