-
Notifications
You must be signed in to change notification settings - Fork 102
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #221 from oarriaga/refactor_hand_estimation
Refactor hand estimation
- Loading branch information
Showing
36 changed files
with
139 additions
and
3,091 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
### This example detects hand pose from an image. | ||
|
||
To test the live hand pose estimation from camera, run: | ||
```py | ||
python demo.py | ||
``` | ||
|
||
To test the hand pose estimation on image, run: | ||
```py | ||
python demo_image.py | ||
``` | ||
|
||
To test the live hand closure status with the pose estimation from camera, run: | ||
```py | ||
python is_open_demo.py | ||
``` | ||
|
||
To test the live hand pose estimation from camera and visualize keypoints in 3D, run (This module has an extra dependency of matplotlib): | ||
```py | ||
python demo3D.py | ||
``` | ||
|
||
### Additional notes | ||
To test a more robust hand pose estimation and open / close classification try out the "paz/examples/hand_detection/pose_demo.py" | ||
|
Oops, something went wrong.