├── LICENSE ├── README.md └── hand-pose-estimation ├── .classpath ├── .cproject ├── .gitignore ├── .project ├── .settings └── org.eclipse.jdt.core.prefs ├── AndroidManifest.xml ├── gen └── .gitignore ├── project.properties ├── res ├── drawable │ └── icon.png ├── layout │ └── main_surface_view.xml └── values │ └── strings.xml └── src └── org └── typedef └── android └── handpose ├── CustomSufaceView.java ├── MainActivity.java └── imageProcessing └── ColorBlobDetector.java /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3ct0r/hand_finger_recognition_android/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3ct0r/hand_finger_recognition_android/HEAD/README.md -------------------------------------------------------------------------------- /hand-pose-estimation/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3ct0r/hand_finger_recognition_android/HEAD/hand-pose-estimation/.classpath -------------------------------------------------------------------------------- /hand-pose-estimation/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3ct0r/hand_finger_recognition_android/HEAD/hand-pose-estimation/.cproject -------------------------------------------------------------------------------- /hand-pose-estimation/.gitignore: -------------------------------------------------------------------------------- 1 | bin -------------------------------------------------------------------------------- /hand-pose-estimation/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3ct0r/hand_finger_recognition_android/HEAD/hand-pose-estimation/.project -------------------------------------------------------------------------------- /hand-pose-estimation/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3ct0r/hand_finger_recognition_android/HEAD/hand-pose-estimation/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /hand-pose-estimation/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3ct0r/hand_finger_recognition_android/HEAD/hand-pose-estimation/AndroidManifest.xml -------------------------------------------------------------------------------- /hand-pose-estimation/gen/.gitignore: -------------------------------------------------------------------------------- 1 | /org 2 | /.gitignore 3 | -------------------------------------------------------------------------------- /hand-pose-estimation/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3ct0r/hand_finger_recognition_android/HEAD/hand-pose-estimation/project.properties -------------------------------------------------------------------------------- /hand-pose-estimation/res/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3ct0r/hand_finger_recognition_android/HEAD/hand-pose-estimation/res/drawable/icon.png -------------------------------------------------------------------------------- /hand-pose-estimation/res/layout/main_surface_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3ct0r/hand_finger_recognition_android/HEAD/hand-pose-estimation/res/layout/main_surface_view.xml -------------------------------------------------------------------------------- /hand-pose-estimation/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3ct0r/hand_finger_recognition_android/HEAD/hand-pose-estimation/res/values/strings.xml -------------------------------------------------------------------------------- /hand-pose-estimation/src/org/typedef/android/handpose/CustomSufaceView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3ct0r/hand_finger_recognition_android/HEAD/hand-pose-estimation/src/org/typedef/android/handpose/CustomSufaceView.java -------------------------------------------------------------------------------- /hand-pose-estimation/src/org/typedef/android/handpose/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3ct0r/hand_finger_recognition_android/HEAD/hand-pose-estimation/src/org/typedef/android/handpose/MainActivity.java -------------------------------------------------------------------------------- /hand-pose-estimation/src/org/typedef/android/handpose/imageProcessing/ColorBlobDetector.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3ct0r/hand_finger_recognition_android/HEAD/hand-pose-estimation/src/org/typedef/android/handpose/imageProcessing/ColorBlobDetector.java --------------------------------------------------------------------------------