├── README.md ├── calculate_mean_and_std.py ├── coco_eval.py ├── coco_utils.py ├── data ├── Readme.txt ├── brackets.rar ├── task1 │ ├── train │ │ └── train_info_all.csv │ └── val │ │ └── val_infos.csv └── task2 │ ├── train │ └── classes_all.txt │ └── val │ └── classes.txt ├── distributed_utils.py ├── draw_utils.py ├── export_predict_result.py ├── group_by_aspect_ratio.py ├── jupyter_notebook └── convey_belt_detect.ipynb ├── main.py ├── mydataset.py ├── paper ├── ResNet.pdf └── SSD.pdf ├── plot_curv.py ├── predict.py ├── resnet50.py ├── ssd_model.py ├── train_eval_utils.py ├── train_ssd300.py ├── transforms.py └── utils.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgltt/conveyerbelt-detect/HEAD/README.md -------------------------------------------------------------------------------- /calculate_mean_and_std.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgltt/conveyerbelt-detect/HEAD/calculate_mean_and_std.py -------------------------------------------------------------------------------- /coco_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgltt/conveyerbelt-detect/HEAD/coco_eval.py -------------------------------------------------------------------------------- /coco_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgltt/conveyerbelt-detect/HEAD/coco_utils.py -------------------------------------------------------------------------------- /data/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgltt/conveyerbelt-detect/HEAD/data/Readme.txt -------------------------------------------------------------------------------- /data/brackets.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgltt/conveyerbelt-detect/HEAD/data/brackets.rar -------------------------------------------------------------------------------- /data/task1/train/train_info_all.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgltt/conveyerbelt-detect/HEAD/data/task1/train/train_info_all.csv -------------------------------------------------------------------------------- /data/task1/val/val_infos.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgltt/conveyerbelt-detect/HEAD/data/task1/val/val_infos.csv -------------------------------------------------------------------------------- /data/task2/train/classes_all.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgltt/conveyerbelt-detect/HEAD/data/task2/train/classes_all.txt -------------------------------------------------------------------------------- /data/task2/val/classes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgltt/conveyerbelt-detect/HEAD/data/task2/val/classes.txt -------------------------------------------------------------------------------- /distributed_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgltt/conveyerbelt-detect/HEAD/distributed_utils.py -------------------------------------------------------------------------------- /draw_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgltt/conveyerbelt-detect/HEAD/draw_utils.py -------------------------------------------------------------------------------- /export_predict_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgltt/conveyerbelt-detect/HEAD/export_predict_result.py -------------------------------------------------------------------------------- /group_by_aspect_ratio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgltt/conveyerbelt-detect/HEAD/group_by_aspect_ratio.py -------------------------------------------------------------------------------- /jupyter_notebook/convey_belt_detect.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgltt/conveyerbelt-detect/HEAD/jupyter_notebook/convey_belt_detect.ipynb -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgltt/conveyerbelt-detect/HEAD/main.py -------------------------------------------------------------------------------- /mydataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgltt/conveyerbelt-detect/HEAD/mydataset.py -------------------------------------------------------------------------------- /paper/ResNet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgltt/conveyerbelt-detect/HEAD/paper/ResNet.pdf -------------------------------------------------------------------------------- /paper/SSD.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgltt/conveyerbelt-detect/HEAD/paper/SSD.pdf -------------------------------------------------------------------------------- /plot_curv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgltt/conveyerbelt-detect/HEAD/plot_curv.py -------------------------------------------------------------------------------- /predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgltt/conveyerbelt-detect/HEAD/predict.py -------------------------------------------------------------------------------- /resnet50.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgltt/conveyerbelt-detect/HEAD/resnet50.py -------------------------------------------------------------------------------- /ssd_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgltt/conveyerbelt-detect/HEAD/ssd_model.py -------------------------------------------------------------------------------- /train_eval_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgltt/conveyerbelt-detect/HEAD/train_eval_utils.py -------------------------------------------------------------------------------- /train_ssd300.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgltt/conveyerbelt-detect/HEAD/train_ssd300.py -------------------------------------------------------------------------------- /transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgltt/conveyerbelt-detect/HEAD/transforms.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgltt/conveyerbelt-detect/HEAD/utils.py --------------------------------------------------------------------------------