├── README.md ├── adb-detector ├── config.json ├── guide_demonstration.py ├── home.py ├── logs │ ├── real-time_detection_curve.pkl │ └── real-time_detection_logs.txt ├── main.py ├── real_time_detector.py ├── resource │ ├── audio │ │ └── alarm_80.mp3 │ ├── img │ │ ├── banner.png │ │ ├── mikasa.png │ │ ├── realtime_guide.png │ │ └── upload_guide.png │ └── model_weight │ │ └── best.pt ├── result │ └── file │ │ └── 00001_annotated.jpg ├── settings.py ├── upload_detector.py └── utils │ ├── config.py │ ├── load_plot.py │ └── video_surface.py ├── assets ├── PR_curve.png ├── guide.png ├── home.png ├── real-time.png ├── settings.png ├── upload.png └── upload_eg.png └── requirements.txt /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlie020/abnormal-driving-behavior-detector/HEAD/README.md -------------------------------------------------------------------------------- /adb-detector/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlie020/abnormal-driving-behavior-detector/HEAD/adb-detector/config.json -------------------------------------------------------------------------------- /adb-detector/guide_demonstration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlie020/abnormal-driving-behavior-detector/HEAD/adb-detector/guide_demonstration.py -------------------------------------------------------------------------------- /adb-detector/home.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlie020/abnormal-driving-behavior-detector/HEAD/adb-detector/home.py -------------------------------------------------------------------------------- /adb-detector/logs/real-time_detection_curve.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlie020/abnormal-driving-behavior-detector/HEAD/adb-detector/logs/real-time_detection_curve.pkl -------------------------------------------------------------------------------- /adb-detector/logs/real-time_detection_logs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlie020/abnormal-driving-behavior-detector/HEAD/adb-detector/logs/real-time_detection_logs.txt -------------------------------------------------------------------------------- /adb-detector/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlie020/abnormal-driving-behavior-detector/HEAD/adb-detector/main.py -------------------------------------------------------------------------------- /adb-detector/real_time_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlie020/abnormal-driving-behavior-detector/HEAD/adb-detector/real_time_detector.py -------------------------------------------------------------------------------- /adb-detector/resource/audio/alarm_80.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlie020/abnormal-driving-behavior-detector/HEAD/adb-detector/resource/audio/alarm_80.mp3 -------------------------------------------------------------------------------- /adb-detector/resource/img/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlie020/abnormal-driving-behavior-detector/HEAD/adb-detector/resource/img/banner.png -------------------------------------------------------------------------------- /adb-detector/resource/img/mikasa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlie020/abnormal-driving-behavior-detector/HEAD/adb-detector/resource/img/mikasa.png -------------------------------------------------------------------------------- /adb-detector/resource/img/realtime_guide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlie020/abnormal-driving-behavior-detector/HEAD/adb-detector/resource/img/realtime_guide.png -------------------------------------------------------------------------------- /adb-detector/resource/img/upload_guide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlie020/abnormal-driving-behavior-detector/HEAD/adb-detector/resource/img/upload_guide.png -------------------------------------------------------------------------------- /adb-detector/resource/model_weight/best.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlie020/abnormal-driving-behavior-detector/HEAD/adb-detector/resource/model_weight/best.pt -------------------------------------------------------------------------------- /adb-detector/result/file/00001_annotated.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlie020/abnormal-driving-behavior-detector/HEAD/adb-detector/result/file/00001_annotated.jpg -------------------------------------------------------------------------------- /adb-detector/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlie020/abnormal-driving-behavior-detector/HEAD/adb-detector/settings.py -------------------------------------------------------------------------------- /adb-detector/upload_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlie020/abnormal-driving-behavior-detector/HEAD/adb-detector/upload_detector.py -------------------------------------------------------------------------------- /adb-detector/utils/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlie020/abnormal-driving-behavior-detector/HEAD/adb-detector/utils/config.py -------------------------------------------------------------------------------- /adb-detector/utils/load_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlie020/abnormal-driving-behavior-detector/HEAD/adb-detector/utils/load_plot.py -------------------------------------------------------------------------------- /adb-detector/utils/video_surface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlie020/abnormal-driving-behavior-detector/HEAD/adb-detector/utils/video_surface.py -------------------------------------------------------------------------------- /assets/PR_curve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlie020/abnormal-driving-behavior-detector/HEAD/assets/PR_curve.png -------------------------------------------------------------------------------- /assets/guide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlie020/abnormal-driving-behavior-detector/HEAD/assets/guide.png -------------------------------------------------------------------------------- /assets/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlie020/abnormal-driving-behavior-detector/HEAD/assets/home.png -------------------------------------------------------------------------------- /assets/real-time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlie020/abnormal-driving-behavior-detector/HEAD/assets/real-time.png -------------------------------------------------------------------------------- /assets/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlie020/abnormal-driving-behavior-detector/HEAD/assets/settings.png -------------------------------------------------------------------------------- /assets/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlie020/abnormal-driving-behavior-detector/HEAD/assets/upload.png -------------------------------------------------------------------------------- /assets/upload_eg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlie020/abnormal-driving-behavior-detector/HEAD/assets/upload_eg.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlie020/abnormal-driving-behavior-detector/HEAD/requirements.txt --------------------------------------------------------------------------------