You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is no common data value between HID and OpenCV Video Capture. Currently, both just make sure that they find a camera of the correct vendor and manufacture name but if two Deimos' are connected then there is a chance these will connect to different devices.
(See src/camera/StereoCameraDeimos.cpp)
Here the hid_open takes the vendor and manufacture id (0x2560,0xC114):
deimos_device = hid_open(0x2560, 0xC114, NULL);
Searching the windows registry it doesn't look like there is a common setting between the video capture and HID device.
However, looks like ecosystems has made changes to OpenCV to allow it to return device information, see here.
The text was updated successfully, but these errors were encountered:
Oh this is fun. The order that devices appear in DShow should be identical to OpenCV though because they're enumerated in the same order. We can query basically anything that comes up in the properties tab in Device Manager I think?
We can probably query serial here, just after we've identified that the device is a Deimos:
There is no common data value between HID and OpenCV Video Capture. Currently, both just make sure that they find a camera of the correct vendor and manufacture name but if two Deimos' are connected then there is a chance these will connect to different devices.
(See src/camera/StereoCameraDeimos.cpp)
Here the hid_open takes the vendor and manufacture id (0x2560,0xC114):
Searching the windows registry it doesn't look like there is a common setting between the video capture and HID device.
However, looks like ecosystems has made changes to OpenCV to allow it to return device information, see here.
The text was updated successfully, but these errors were encountered: