-
Notifications
You must be signed in to change notification settings - Fork 78
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
Using laptop integrated camera #23
Comments
Hi, |
Thank you for your answer ! |
Using directly mediapipe is the best method to run the models on your computer. |
can you suggest a way to improve media pipe accuracy to detect hand from long distance in laptop using a method you used for OAK-D in your implementation , Thank you |
@udayzee05 If you are working with mediapipe, you can directly use Holistic (https://google.github.io/mediapipe/solutions/holistic). It relies on blazepose to estimate the body pose. And the body pose gives the region where to look for the hands. I am using movenet instead of blazepose but the principle is similar. |
Hello,
I'm building an application for which I'd like to be able to switch between an OAK-D S2 and a standard, laptop integrated webcam.
It is my understanding that it should possible (at the cost of several unavailable features) by running :
python demo.py -i '0'
But i get the following RunTime error :
Palm detection blob : /home/emoullet/GitHub/depthai_hand_tracker/models/palm_detection_sh4.blob
Landmark blob : /home/emoullet/GitHub/depthai_hand_tracker/models/hand_landmark_lite_sh4.blob
Traceback (most recent call last):
File "/home/emoullet/GitHub/depthai_hand_tracker/demo.py", line 59, in <module>
tracker = HandTracker(
File "/home/emoullet/GitHub/depthai_hand_tracker/HandTracker.py", line 130, in __init__
self.device = dai.Device()
RuntimeError: No available devices
Am I missing something on the arguments to pass for it to work with integrated camera ? Or is there some preparatory work to do on the cam (i.e. calibration) ?
Many thanks in advance, and hats off for this amasing tool !
The text was updated successfully, but these errors were encountered: