├── Image_txt ├── test.txt └── train.txt ├── README.md ├── app ├── __pycache__ │ └── app.cpython-36.pyc ├── app.py ├── app_iamge │ └── 1.jpg ├── handleVideo.py └── videos │ └── self1.mp4 ├── backward.py ├── debug.py ├── forward.py ├── handleVideo.py ├── makeData.py └── testModel.py /Image_txt/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghlgithub/smokeDetection/HEAD/Image_txt/test.txt -------------------------------------------------------------------------------- /Image_txt/train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghlgithub/smokeDetection/HEAD/Image_txt/train.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghlgithub/smokeDetection/HEAD/README.md -------------------------------------------------------------------------------- /app/__pycache__/app.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghlgithub/smokeDetection/HEAD/app/__pycache__/app.cpython-36.pyc -------------------------------------------------------------------------------- /app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghlgithub/smokeDetection/HEAD/app/app.py -------------------------------------------------------------------------------- /app/app_iamge/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghlgithub/smokeDetection/HEAD/app/app_iamge/1.jpg -------------------------------------------------------------------------------- /app/handleVideo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghlgithub/smokeDetection/HEAD/app/handleVideo.py -------------------------------------------------------------------------------- /app/videos/self1.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghlgithub/smokeDetection/HEAD/app/videos/self1.mp4 -------------------------------------------------------------------------------- /backward.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghlgithub/smokeDetection/HEAD/backward.py -------------------------------------------------------------------------------- /debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghlgithub/smokeDetection/HEAD/debug.py -------------------------------------------------------------------------------- /forward.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghlgithub/smokeDetection/HEAD/forward.py -------------------------------------------------------------------------------- /handleVideo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghlgithub/smokeDetection/HEAD/handleVideo.py -------------------------------------------------------------------------------- /makeData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghlgithub/smokeDetection/HEAD/makeData.py -------------------------------------------------------------------------------- /testModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanghlgithub/smokeDetection/HEAD/testModel.py --------------------------------------------------------------------------------