├── .gitignore ├── LICENSE ├── README.md ├── TRAIN-ON-CUSTOM-DATASET.md ├── Video_Information ├── id_name.txt └── url_address.txt ├── action_detect ├── data.py ├── detect.py ├── net.py └── train.py ├── conver_to_jit.py ├── data ├── preview.jpg └── shake_it_off.jpg ├── datasets ├── __init__.py ├── coco.py └── transformations.py ├── demo.py ├── fall_down_detecter.py ├── models ├── __init__.py └── with_mobilenet.py ├── modules ├── __init__.py ├── conv.py ├── get_parameters.py ├── keypoints.py ├── load_state.py ├── loss.py ├── one_euro_filter.py └── pose.py ├── performance_evaluation ├── action_metrics.py ├── action_result.txt ├── creat_val_data.py └── create_result.py ├── px.ico ├── requirements.txt ├── scripts ├── conver_to_jit.py ├── convert_to_onnx.py ├── make_val_subset.py └── prepare_train_labels.py ├── test.py ├── train.py └── val.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackFeatherQQ/openpose_fall_detect/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackFeatherQQ/openpose_fall_detect/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackFeatherQQ/openpose_fall_detect/HEAD/README.md -------------------------------------------------------------------------------- /TRAIN-ON-CUSTOM-DATASET.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackFeatherQQ/openpose_fall_detect/HEAD/TRAIN-ON-CUSTOM-DATASET.md -------------------------------------------------------------------------------- /Video_Information/id_name.txt: -------------------------------------------------------------------------------- 1 | 222 2 | -------------------------------------------------------------------------------- /Video_Information/url_address.txt: -------------------------------------------------------------------------------- 1 | 2.mp4 2 | -------------------------------------------------------------------------------- /action_detect/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackFeatherQQ/openpose_fall_detect/HEAD/action_detect/data.py -------------------------------------------------------------------------------- /action_detect/detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackFeatherQQ/openpose_fall_detect/HEAD/action_detect/detect.py -------------------------------------------------------------------------------- /action_detect/net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackFeatherQQ/openpose_fall_detect/HEAD/action_detect/net.py -------------------------------------------------------------------------------- /action_detect/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackFeatherQQ/openpose_fall_detect/HEAD/action_detect/train.py -------------------------------------------------------------------------------- /conver_to_jit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackFeatherQQ/openpose_fall_detect/HEAD/conver_to_jit.py -------------------------------------------------------------------------------- /data/preview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackFeatherQQ/openpose_fall_detect/HEAD/data/preview.jpg -------------------------------------------------------------------------------- /data/shake_it_off.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackFeatherQQ/openpose_fall_detect/HEAD/data/shake_it_off.jpg -------------------------------------------------------------------------------- /datasets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /datasets/coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackFeatherQQ/openpose_fall_detect/HEAD/datasets/coco.py -------------------------------------------------------------------------------- /datasets/transformations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackFeatherQQ/openpose_fall_detect/HEAD/datasets/transformations.py -------------------------------------------------------------------------------- /demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackFeatherQQ/openpose_fall_detect/HEAD/demo.py -------------------------------------------------------------------------------- /fall_down_detecter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackFeatherQQ/openpose_fall_detect/HEAD/fall_down_detecter.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/with_mobilenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackFeatherQQ/openpose_fall_detect/HEAD/models/with_mobilenet.py -------------------------------------------------------------------------------- /modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/conv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackFeatherQQ/openpose_fall_detect/HEAD/modules/conv.py -------------------------------------------------------------------------------- /modules/get_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackFeatherQQ/openpose_fall_detect/HEAD/modules/get_parameters.py -------------------------------------------------------------------------------- /modules/keypoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackFeatherQQ/openpose_fall_detect/HEAD/modules/keypoints.py -------------------------------------------------------------------------------- /modules/load_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackFeatherQQ/openpose_fall_detect/HEAD/modules/load_state.py -------------------------------------------------------------------------------- /modules/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackFeatherQQ/openpose_fall_detect/HEAD/modules/loss.py -------------------------------------------------------------------------------- /modules/one_euro_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackFeatherQQ/openpose_fall_detect/HEAD/modules/one_euro_filter.py -------------------------------------------------------------------------------- /modules/pose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackFeatherQQ/openpose_fall_detect/HEAD/modules/pose.py -------------------------------------------------------------------------------- /performance_evaluation/action_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackFeatherQQ/openpose_fall_detect/HEAD/performance_evaluation/action_metrics.py -------------------------------------------------------------------------------- /performance_evaluation/action_result.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackFeatherQQ/openpose_fall_detect/HEAD/performance_evaluation/action_result.txt -------------------------------------------------------------------------------- /performance_evaluation/creat_val_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackFeatherQQ/openpose_fall_detect/HEAD/performance_evaluation/creat_val_data.py -------------------------------------------------------------------------------- /performance_evaluation/create_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackFeatherQQ/openpose_fall_detect/HEAD/performance_evaluation/create_result.py -------------------------------------------------------------------------------- /px.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackFeatherQQ/openpose_fall_detect/HEAD/px.ico -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackFeatherQQ/openpose_fall_detect/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/conver_to_jit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackFeatherQQ/openpose_fall_detect/HEAD/scripts/conver_to_jit.py -------------------------------------------------------------------------------- /scripts/convert_to_onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackFeatherQQ/openpose_fall_detect/HEAD/scripts/convert_to_onnx.py -------------------------------------------------------------------------------- /scripts/make_val_subset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackFeatherQQ/openpose_fall_detect/HEAD/scripts/make_val_subset.py -------------------------------------------------------------------------------- /scripts/prepare_train_labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackFeatherQQ/openpose_fall_detect/HEAD/scripts/prepare_train_labels.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackFeatherQQ/openpose_fall_detect/HEAD/test.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackFeatherQQ/openpose_fall_detect/HEAD/train.py -------------------------------------------------------------------------------- /val.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackFeatherQQ/openpose_fall_detect/HEAD/val.py --------------------------------------------------------------------------------