├── .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 ├── datasets ├── __init__.py ├── coco.py └── transformations.py ├── demo.py ├── detect.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 ├── testpyth.py ├── train.py └── val.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuoxiangpang/ism_openpose_fall/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuoxiangpang/ism_openpose_fall/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuoxiangpang/ism_openpose_fall/HEAD/README.md -------------------------------------------------------------------------------- /TRAIN-ON-CUSTOM-DATASET.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuoxiangpang/ism_openpose_fall/HEAD/TRAIN-ON-CUSTOM-DATASET.md -------------------------------------------------------------------------------- /Video_Information/id_name.txt: -------------------------------------------------------------------------------- 1 | 489 2 | -------------------------------------------------------------------------------- /Video_Information/url_address.txt: -------------------------------------------------------------------------------- 1 | C:\zqr\fallImg\489\rgb 2 | -------------------------------------------------------------------------------- /action_detect/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuoxiangpang/ism_openpose_fall/HEAD/action_detect/data.py -------------------------------------------------------------------------------- /action_detect/detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuoxiangpang/ism_openpose_fall/HEAD/action_detect/detect.py -------------------------------------------------------------------------------- /action_detect/net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuoxiangpang/ism_openpose_fall/HEAD/action_detect/net.py -------------------------------------------------------------------------------- /action_detect/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuoxiangpang/ism_openpose_fall/HEAD/action_detect/train.py -------------------------------------------------------------------------------- /conver_to_jit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuoxiangpang/ism_openpose_fall/HEAD/conver_to_jit.py -------------------------------------------------------------------------------- /datasets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /datasets/coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuoxiangpang/ism_openpose_fall/HEAD/datasets/coco.py -------------------------------------------------------------------------------- /datasets/transformations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuoxiangpang/ism_openpose_fall/HEAD/datasets/transformations.py -------------------------------------------------------------------------------- /demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuoxiangpang/ism_openpose_fall/HEAD/demo.py -------------------------------------------------------------------------------- /detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuoxiangpang/ism_openpose_fall/HEAD/detect.py -------------------------------------------------------------------------------- /fall_down_detecter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuoxiangpang/ism_openpose_fall/HEAD/fall_down_detecter.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/with_mobilenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuoxiangpang/ism_openpose_fall/HEAD/models/with_mobilenet.py -------------------------------------------------------------------------------- /modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/conv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuoxiangpang/ism_openpose_fall/HEAD/modules/conv.py -------------------------------------------------------------------------------- /modules/get_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuoxiangpang/ism_openpose_fall/HEAD/modules/get_parameters.py -------------------------------------------------------------------------------- /modules/keypoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuoxiangpang/ism_openpose_fall/HEAD/modules/keypoints.py -------------------------------------------------------------------------------- /modules/load_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuoxiangpang/ism_openpose_fall/HEAD/modules/load_state.py -------------------------------------------------------------------------------- /modules/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuoxiangpang/ism_openpose_fall/HEAD/modules/loss.py -------------------------------------------------------------------------------- /modules/one_euro_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuoxiangpang/ism_openpose_fall/HEAD/modules/one_euro_filter.py -------------------------------------------------------------------------------- /modules/pose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuoxiangpang/ism_openpose_fall/HEAD/modules/pose.py -------------------------------------------------------------------------------- /performance_evaluation/action_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuoxiangpang/ism_openpose_fall/HEAD/performance_evaluation/action_metrics.py -------------------------------------------------------------------------------- /performance_evaluation/action_result.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuoxiangpang/ism_openpose_fall/HEAD/performance_evaluation/action_result.txt -------------------------------------------------------------------------------- /performance_evaluation/creat_val_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuoxiangpang/ism_openpose_fall/HEAD/performance_evaluation/creat_val_data.py -------------------------------------------------------------------------------- /performance_evaluation/create_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuoxiangpang/ism_openpose_fall/HEAD/performance_evaluation/create_result.py -------------------------------------------------------------------------------- /px.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuoxiangpang/ism_openpose_fall/HEAD/px.ico -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuoxiangpang/ism_openpose_fall/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/conver_to_jit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuoxiangpang/ism_openpose_fall/HEAD/scripts/conver_to_jit.py -------------------------------------------------------------------------------- /scripts/convert_to_onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuoxiangpang/ism_openpose_fall/HEAD/scripts/convert_to_onnx.py -------------------------------------------------------------------------------- /scripts/make_val_subset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuoxiangpang/ism_openpose_fall/HEAD/scripts/make_val_subset.py -------------------------------------------------------------------------------- /scripts/prepare_train_labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuoxiangpang/ism_openpose_fall/HEAD/scripts/prepare_train_labels.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuoxiangpang/ism_openpose_fall/HEAD/test.py -------------------------------------------------------------------------------- /testpyth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuoxiangpang/ism_openpose_fall/HEAD/testpyth.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuoxiangpang/ism_openpose_fall/HEAD/train.py -------------------------------------------------------------------------------- /val.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuoxiangpang/ism_openpose_fall/HEAD/val.py --------------------------------------------------------------------------------