├── README.md ├── classify └── classmain.py ├── config.py ├── models ├── __init__.py ├── __pycache__ │ └── __init__.cpython-35.pyc └── nets │ ├── CPM.py │ ├── __init__.py │ ├── __pycache__ │ ├── CPM.cpython-35.pyc │ ├── __init__.cpython-35.pyc │ └── cpm_hand.cpython-35.pyc │ ├── cpm_body.py │ ├── cpm_body_slim.py │ ├── cpm_hand.py │ ├── cpm_hand_slim.py │ └── cpm_hand_v2.py ├── run_demo_hand_with_tracker.py ├── useClassifyModel.py └── utils ├── __init__.py ├── __pycache__ ├── __init__.cpython-35.pyc ├── cpm_utils.cpython-35.pyc ├── tracking_module.cpython-35.pyc └── utils.cpython-35.pyc ├── cpm_utils.py ├── create_cpm_tfr_fulljoints.py ├── tf_utils.py ├── tracking_module.py └── utils.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyerica/HandGestureClassify/HEAD/README.md -------------------------------------------------------------------------------- /classify/classmain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyerica/HandGestureClassify/HEAD/classify/classmain.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyerica/HandGestureClassify/HEAD/config.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyerica/HandGestureClassify/HEAD/models/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /models/nets/CPM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyerica/HandGestureClassify/HEAD/models/nets/CPM.py -------------------------------------------------------------------------------- /models/nets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/nets/__pycache__/CPM.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyerica/HandGestureClassify/HEAD/models/nets/__pycache__/CPM.cpython-35.pyc -------------------------------------------------------------------------------- /models/nets/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyerica/HandGestureClassify/HEAD/models/nets/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /models/nets/__pycache__/cpm_hand.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyerica/HandGestureClassify/HEAD/models/nets/__pycache__/cpm_hand.cpython-35.pyc -------------------------------------------------------------------------------- /models/nets/cpm_body.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyerica/HandGestureClassify/HEAD/models/nets/cpm_body.py -------------------------------------------------------------------------------- /models/nets/cpm_body_slim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyerica/HandGestureClassify/HEAD/models/nets/cpm_body_slim.py -------------------------------------------------------------------------------- /models/nets/cpm_hand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyerica/HandGestureClassify/HEAD/models/nets/cpm_hand.py -------------------------------------------------------------------------------- /models/nets/cpm_hand_slim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyerica/HandGestureClassify/HEAD/models/nets/cpm_hand_slim.py -------------------------------------------------------------------------------- /models/nets/cpm_hand_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyerica/HandGestureClassify/HEAD/models/nets/cpm_hand_v2.py -------------------------------------------------------------------------------- /run_demo_hand_with_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyerica/HandGestureClassify/HEAD/run_demo_hand_with_tracker.py -------------------------------------------------------------------------------- /useClassifyModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyerica/HandGestureClassify/HEAD/useClassifyModel.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyerica/HandGestureClassify/HEAD/utils/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /utils/__pycache__/cpm_utils.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyerica/HandGestureClassify/HEAD/utils/__pycache__/cpm_utils.cpython-35.pyc -------------------------------------------------------------------------------- /utils/__pycache__/tracking_module.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyerica/HandGestureClassify/HEAD/utils/__pycache__/tracking_module.cpython-35.pyc -------------------------------------------------------------------------------- /utils/__pycache__/utils.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyerica/HandGestureClassify/HEAD/utils/__pycache__/utils.cpython-35.pyc -------------------------------------------------------------------------------- /utils/cpm_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyerica/HandGestureClassify/HEAD/utils/cpm_utils.py -------------------------------------------------------------------------------- /utils/create_cpm_tfr_fulljoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyerica/HandGestureClassify/HEAD/utils/create_cpm_tfr_fulljoints.py -------------------------------------------------------------------------------- /utils/tf_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyerica/HandGestureClassify/HEAD/utils/tf_utils.py -------------------------------------------------------------------------------- /utils/tracking_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyerica/HandGestureClassify/HEAD/utils/tracking_module.py -------------------------------------------------------------------------------- /utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyerica/HandGestureClassify/HEAD/utils/utils.py --------------------------------------------------------------------------------