├── .gitignore ├── Action ├── __init__.py ├── action_enum.py ├── framewise_recognition.h5 ├── framewise_recognition_under_scene.h5 ├── recognizer.py └── training │ ├── data.csv │ ├── data_under_scene.csv │ └── train.py ├── LICENSE ├── Pose ├── __init__.py ├── coco_format.py ├── graph_models │ ├── VGG_origin │ │ └── download.sh │ └── mobilenet_thin │ │ └── graph_opt.pb ├── human.py ├── pose_estimator.py └── pose_visualizer.py ├── README.md ├── Tracking ├── __init__.py ├── deep_sort │ ├── __init__.py │ ├── detection.py │ ├── iou_matching.py │ ├── kalman_filter.py │ ├── linear_assignment.py │ ├── nn_matching.py │ ├── preprocessing.py │ ├── track.py │ └── tracker.py ├── generate_dets.py └── graph_model │ └── mars-small128.pb ├── main.py ├── test_out ├── webcam_multi-people.gif ├── webcam_test_out.gif ├── webcam_under_scene-1.gif └── webcam_under_scene-2.gif └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZQthePlane/Online-Realtime-Action-Recognition-based-on-OpenPose/HEAD/.gitignore -------------------------------------------------------------------------------- /Action/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Action/action_enum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZQthePlane/Online-Realtime-Action-Recognition-based-on-OpenPose/HEAD/Action/action_enum.py -------------------------------------------------------------------------------- /Action/framewise_recognition.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZQthePlane/Online-Realtime-Action-Recognition-based-on-OpenPose/HEAD/Action/framewise_recognition.h5 -------------------------------------------------------------------------------- /Action/framewise_recognition_under_scene.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZQthePlane/Online-Realtime-Action-Recognition-based-on-OpenPose/HEAD/Action/framewise_recognition_under_scene.h5 -------------------------------------------------------------------------------- /Action/recognizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZQthePlane/Online-Realtime-Action-Recognition-based-on-OpenPose/HEAD/Action/recognizer.py -------------------------------------------------------------------------------- /Action/training/data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZQthePlane/Online-Realtime-Action-Recognition-based-on-OpenPose/HEAD/Action/training/data.csv -------------------------------------------------------------------------------- /Action/training/data_under_scene.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZQthePlane/Online-Realtime-Action-Recognition-based-on-OpenPose/HEAD/Action/training/data_under_scene.csv -------------------------------------------------------------------------------- /Action/training/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZQthePlane/Online-Realtime-Action-Recognition-based-on-OpenPose/HEAD/Action/training/train.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZQthePlane/Online-Realtime-Action-Recognition-based-on-OpenPose/HEAD/LICENSE -------------------------------------------------------------------------------- /Pose/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pose/coco_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZQthePlane/Online-Realtime-Action-Recognition-based-on-OpenPose/HEAD/Pose/coco_format.py -------------------------------------------------------------------------------- /Pose/graph_models/VGG_origin/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZQthePlane/Online-Realtime-Action-Recognition-based-on-OpenPose/HEAD/Pose/graph_models/VGG_origin/download.sh -------------------------------------------------------------------------------- /Pose/graph_models/mobilenet_thin/graph_opt.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZQthePlane/Online-Realtime-Action-Recognition-based-on-OpenPose/HEAD/Pose/graph_models/mobilenet_thin/graph_opt.pb -------------------------------------------------------------------------------- /Pose/human.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZQthePlane/Online-Realtime-Action-Recognition-based-on-OpenPose/HEAD/Pose/human.py -------------------------------------------------------------------------------- /Pose/pose_estimator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZQthePlane/Online-Realtime-Action-Recognition-based-on-OpenPose/HEAD/Pose/pose_estimator.py -------------------------------------------------------------------------------- /Pose/pose_visualizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZQthePlane/Online-Realtime-Action-Recognition-based-on-OpenPose/HEAD/Pose/pose_visualizer.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZQthePlane/Online-Realtime-Action-Recognition-based-on-OpenPose/HEAD/README.md -------------------------------------------------------------------------------- /Tracking/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tracking/deep_sort/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tracking/deep_sort/detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZQthePlane/Online-Realtime-Action-Recognition-based-on-OpenPose/HEAD/Tracking/deep_sort/detection.py -------------------------------------------------------------------------------- /Tracking/deep_sort/iou_matching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZQthePlane/Online-Realtime-Action-Recognition-based-on-OpenPose/HEAD/Tracking/deep_sort/iou_matching.py -------------------------------------------------------------------------------- /Tracking/deep_sort/kalman_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZQthePlane/Online-Realtime-Action-Recognition-based-on-OpenPose/HEAD/Tracking/deep_sort/kalman_filter.py -------------------------------------------------------------------------------- /Tracking/deep_sort/linear_assignment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZQthePlane/Online-Realtime-Action-Recognition-based-on-OpenPose/HEAD/Tracking/deep_sort/linear_assignment.py -------------------------------------------------------------------------------- /Tracking/deep_sort/nn_matching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZQthePlane/Online-Realtime-Action-Recognition-based-on-OpenPose/HEAD/Tracking/deep_sort/nn_matching.py -------------------------------------------------------------------------------- /Tracking/deep_sort/preprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZQthePlane/Online-Realtime-Action-Recognition-based-on-OpenPose/HEAD/Tracking/deep_sort/preprocessing.py -------------------------------------------------------------------------------- /Tracking/deep_sort/track.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZQthePlane/Online-Realtime-Action-Recognition-based-on-OpenPose/HEAD/Tracking/deep_sort/track.py -------------------------------------------------------------------------------- /Tracking/deep_sort/tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZQthePlane/Online-Realtime-Action-Recognition-based-on-OpenPose/HEAD/Tracking/deep_sort/tracker.py -------------------------------------------------------------------------------- /Tracking/generate_dets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZQthePlane/Online-Realtime-Action-Recognition-based-on-OpenPose/HEAD/Tracking/generate_dets.py -------------------------------------------------------------------------------- /Tracking/graph_model/mars-small128.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZQthePlane/Online-Realtime-Action-Recognition-based-on-OpenPose/HEAD/Tracking/graph_model/mars-small128.pb -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZQthePlane/Online-Realtime-Action-Recognition-based-on-OpenPose/HEAD/main.py -------------------------------------------------------------------------------- /test_out/webcam_multi-people.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZQthePlane/Online-Realtime-Action-Recognition-based-on-OpenPose/HEAD/test_out/webcam_multi-people.gif -------------------------------------------------------------------------------- /test_out/webcam_test_out.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZQthePlane/Online-Realtime-Action-Recognition-based-on-OpenPose/HEAD/test_out/webcam_test_out.gif -------------------------------------------------------------------------------- /test_out/webcam_under_scene-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZQthePlane/Online-Realtime-Action-Recognition-based-on-OpenPose/HEAD/test_out/webcam_under_scene-1.gif -------------------------------------------------------------------------------- /test_out/webcam_under_scene-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZQthePlane/Online-Realtime-Action-Recognition-based-on-OpenPose/HEAD/test_out/webcam_under_scene-2.gif -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZQthePlane/Online-Realtime-Action-Recognition-based-on-OpenPose/HEAD/utils.py --------------------------------------------------------------------------------