Skip to content

Commit 0d7356b

Browse files
committed
Add rebuilt 'tensorflow' wheel and model files. Run hand tracking.
1 parent 8c4b6b5 commit 0d7356b

File tree

11 files changed

+3234
-17
lines changed

11 files changed

+3234
-17
lines changed

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
tensorflow-1.14.1-cp36-cp36m-linux_x86_64.whl filter=lfs diff=lfs merge=lfs -text

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
__pycache__

Dockerfile

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
FROM python:3.6
2+
3+
COPY . /root/hand_tracking
4+
5+
WORKDIR /root/hand_tracking
6+
7+
RUN pip install opencv-python Pillow
8+
9+
RUN pip install tensorflow-1.14.1-cp36-cp36m-linux_x86_64.whl

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
## Hand tracking
2+
3+
```
4+
$ docker build -t hand_tracking .
5+
$ docker run -dit --device=/dev/video0:/dev/video0 -v /tmp/.X11-unix:/tmp/.X11-unix -e DISPLAY=$IP:0 --name hand_tracking hand_tracking bash
6+
```

0 commit comments

Comments
 (0)