├── .gitignore ├── FasterRCNN ├── __init__.py ├── config.py ├── crash_test.py ├── data_check.py ├── dataset.py ├── engine.py ├── inference.py ├── json2csv.py ├── model.py ├── output.py ├── results_integration.py ├── test.py ├── test_data_fix.py ├── train.log ├── train.py └── utils.py ├── LICENSE ├── README.md ├── code ├── README.md ├── check_mask.py ├── coco.py ├── crop.py ├── cut.py ├── mask.py ├── tools │ ├── data.py │ ├── view.py │ └── view_cut_pic.py └── utils.py └── draft └── a.py /.gitignore: -------------------------------------------------------------------------------- 1 | data/ 2 | __pycache__/ 3 | view/ 4 | *.json 5 | *.csv -------------------------------------------------------------------------------- /FasterRCNN/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XDU-Bigbing/Simple-Key-Point-Detection/HEAD/FasterRCNN/__init__.py -------------------------------------------------------------------------------- /FasterRCNN/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XDU-Bigbing/Simple-Key-Point-Detection/HEAD/FasterRCNN/config.py -------------------------------------------------------------------------------- /FasterRCNN/crash_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XDU-Bigbing/Simple-Key-Point-Detection/HEAD/FasterRCNN/crash_test.py -------------------------------------------------------------------------------- /FasterRCNN/data_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XDU-Bigbing/Simple-Key-Point-Detection/HEAD/FasterRCNN/data_check.py -------------------------------------------------------------------------------- /FasterRCNN/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XDU-Bigbing/Simple-Key-Point-Detection/HEAD/FasterRCNN/dataset.py -------------------------------------------------------------------------------- /FasterRCNN/engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XDU-Bigbing/Simple-Key-Point-Detection/HEAD/FasterRCNN/engine.py -------------------------------------------------------------------------------- /FasterRCNN/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XDU-Bigbing/Simple-Key-Point-Detection/HEAD/FasterRCNN/inference.py -------------------------------------------------------------------------------- /FasterRCNN/json2csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XDU-Bigbing/Simple-Key-Point-Detection/HEAD/FasterRCNN/json2csv.py -------------------------------------------------------------------------------- /FasterRCNN/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XDU-Bigbing/Simple-Key-Point-Detection/HEAD/FasterRCNN/model.py -------------------------------------------------------------------------------- /FasterRCNN/output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XDU-Bigbing/Simple-Key-Point-Detection/HEAD/FasterRCNN/output.py -------------------------------------------------------------------------------- /FasterRCNN/results_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XDU-Bigbing/Simple-Key-Point-Detection/HEAD/FasterRCNN/results_integration.py -------------------------------------------------------------------------------- /FasterRCNN/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XDU-Bigbing/Simple-Key-Point-Detection/HEAD/FasterRCNN/test.py -------------------------------------------------------------------------------- /FasterRCNN/test_data_fix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XDU-Bigbing/Simple-Key-Point-Detection/HEAD/FasterRCNN/test_data_fix.py -------------------------------------------------------------------------------- /FasterRCNN/train.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XDU-Bigbing/Simple-Key-Point-Detection/HEAD/FasterRCNN/train.log -------------------------------------------------------------------------------- /FasterRCNN/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XDU-Bigbing/Simple-Key-Point-Detection/HEAD/FasterRCNN/train.py -------------------------------------------------------------------------------- /FasterRCNN/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XDU-Bigbing/Simple-Key-Point-Detection/HEAD/FasterRCNN/utils.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XDU-Bigbing/Simple-Key-Point-Detection/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XDU-Bigbing/Simple-Key-Point-Detection/HEAD/README.md -------------------------------------------------------------------------------- /code/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XDU-Bigbing/Simple-Key-Point-Detection/HEAD/code/README.md -------------------------------------------------------------------------------- /code/check_mask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XDU-Bigbing/Simple-Key-Point-Detection/HEAD/code/check_mask.py -------------------------------------------------------------------------------- /code/coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XDU-Bigbing/Simple-Key-Point-Detection/HEAD/code/coco.py -------------------------------------------------------------------------------- /code/crop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XDU-Bigbing/Simple-Key-Point-Detection/HEAD/code/crop.py -------------------------------------------------------------------------------- /code/cut.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XDU-Bigbing/Simple-Key-Point-Detection/HEAD/code/cut.py -------------------------------------------------------------------------------- /code/mask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XDU-Bigbing/Simple-Key-Point-Detection/HEAD/code/mask.py -------------------------------------------------------------------------------- /code/tools/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XDU-Bigbing/Simple-Key-Point-Detection/HEAD/code/tools/data.py -------------------------------------------------------------------------------- /code/tools/view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XDU-Bigbing/Simple-Key-Point-Detection/HEAD/code/tools/view.py -------------------------------------------------------------------------------- /code/tools/view_cut_pic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XDU-Bigbing/Simple-Key-Point-Detection/HEAD/code/tools/view_cut_pic.py -------------------------------------------------------------------------------- /code/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XDU-Bigbing/Simple-Key-Point-Detection/HEAD/code/utils.py -------------------------------------------------------------------------------- /draft/a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XDU-Bigbing/Simple-Key-Point-Detection/HEAD/draft/a.py --------------------------------------------------------------------------------