├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── PROJECT_STRUCTURE.md ├── QUICKSTART.md ├── README.md ├── README_EN.md ├── backend ├── app.py ├── detector.py └── requirements.txt ├── docs └── MODEL_COMPARISON.md ├── frontend ├── css │ └── style.css ├── index.html └── js │ └── app.js ├── models └── README.md ├── start_web.bat └── traffic_stream_detection_gui.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xup6jammy/AI-Vision-Traffic-Monitoring/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xup6jammy/AI-Vision-Traffic-Monitoring/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xup6jammy/AI-Vision-Traffic-Monitoring/HEAD/LICENSE -------------------------------------------------------------------------------- /PROJECT_STRUCTURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xup6jammy/AI-Vision-Traffic-Monitoring/HEAD/PROJECT_STRUCTURE.md -------------------------------------------------------------------------------- /QUICKSTART.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xup6jammy/AI-Vision-Traffic-Monitoring/HEAD/QUICKSTART.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xup6jammy/AI-Vision-Traffic-Monitoring/HEAD/README.md -------------------------------------------------------------------------------- /README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xup6jammy/AI-Vision-Traffic-Monitoring/HEAD/README_EN.md -------------------------------------------------------------------------------- /backend/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xup6jammy/AI-Vision-Traffic-Monitoring/HEAD/backend/app.py -------------------------------------------------------------------------------- /backend/detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xup6jammy/AI-Vision-Traffic-Monitoring/HEAD/backend/detector.py -------------------------------------------------------------------------------- /backend/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xup6jammy/AI-Vision-Traffic-Monitoring/HEAD/backend/requirements.txt -------------------------------------------------------------------------------- /docs/MODEL_COMPARISON.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xup6jammy/AI-Vision-Traffic-Monitoring/HEAD/docs/MODEL_COMPARISON.md -------------------------------------------------------------------------------- /frontend/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xup6jammy/AI-Vision-Traffic-Monitoring/HEAD/frontend/css/style.css -------------------------------------------------------------------------------- /frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xup6jammy/AI-Vision-Traffic-Monitoring/HEAD/frontend/index.html -------------------------------------------------------------------------------- /frontend/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xup6jammy/AI-Vision-Traffic-Monitoring/HEAD/frontend/js/app.js -------------------------------------------------------------------------------- /models/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xup6jammy/AI-Vision-Traffic-Monitoring/HEAD/models/README.md -------------------------------------------------------------------------------- /start_web.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xup6jammy/AI-Vision-Traffic-Monitoring/HEAD/start_web.bat -------------------------------------------------------------------------------- /traffic_stream_detection_gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xup6jammy/AI-Vision-Traffic-Monitoring/HEAD/traffic_stream_detection_gui.py --------------------------------------------------------------------------------