├── README.md ├── __pycache__ ├── select_object.cpython-37.pyc └── vgg16_model.cpython-37.pyc ├── logs ├── test │ ├── events.out.tfevents.1562816327.DESKTOP-37OVUVC │ ├── events.out.tfevents.1562846121.DESKTOP-37OVUVC │ ├── events.out.tfevents.1562846188.DESKTOP-37OVUVC │ ├── events.out.tfevents.1562846946.DESKTOP-37OVUVC │ ├── events.out.tfevents.1562847249.DESKTOP-37OVUVC │ ├── events.out.tfevents.1562847881.DESKTOP-37OVUVC │ ├── events.out.tfevents.1562848050.DESKTOP-37OVUVC │ ├── events.out.tfevents.1562848355.DESKTOP-37OVUVC │ └── events.out.tfevents.1562849385.DESKTOP-37OVUVC └── train │ ├── events.out.tfevents.1562816324.DESKTOP-37OVUVC │ ├── events.out.tfevents.1562846118.DESKTOP-37OVUVC │ ├── events.out.tfevents.1562846186.DESKTOP-37OVUVC │ ├── events.out.tfevents.1562846943.DESKTOP-37OVUVC │ ├── events.out.tfevents.1562847246.DESKTOP-37OVUVC │ ├── events.out.tfevents.1562847878.DESKTOP-37OVUVC │ ├── events.out.tfevents.1562848047.DESKTOP-37OVUVC │ ├── events.out.tfevents.1562848352.DESKTOP-37OVUVC │ └── events.out.tfevents.1562849382.DESKTOP-37OVUVC ├── select_object.py ├── static ├── icon │ ├── Harmful.png │ ├── Household.png │ ├── Recyclable.png │ ├── Residual.png │ ├── book.svg │ ├── font.png │ └── trashbox.svg └── images │ ├── 0.jpg │ ├── 0B99854608AF55D8D86C17FAFEFC754D.png │ ├── 1.png │ ├── 12.jpg │ ├── 156017.jpg │ ├── 21E211BF2C68730F350357087741FB63.jpg │ ├── 2462999.jpg │ ├── 2808DEA8B1F70F8410276C6FD9F3C80C.jpg │ ├── 3.jpg │ ├── 3028.jpg │ ├── 3283071.jpg │ ├── 3530076.jpg │ ├── 374344.jpg │ ├── 38553.jpg │ ├── 3872552.jpg │ ├── 397896.jpg │ ├── 3jpg.jpg │ ├── 432D77254ECB1BE23CB131A3A353EF0F.png │ ├── 443.jpg │ ├── 593DE80EF44298648A701824FB36A0D0.png │ ├── 892111.jpg │ ├── 97917.jpg │ ├── D25EF094910CD263A2B66B8AC69FD72A.png │ ├── DA5BC918154FCCEF8D1C0152A7290C4F.png │ ├── DCC8760F04446898AA19C83C5A1E23A7.png │ ├── Household2.jpg │ ├── IMG_8899.JPG │ ├── IMG_8901.JPG │ ├── IMG_8902.JPG │ ├── IMG_8906.JPG │ ├── battery.jpg │ ├── battery1.jpg │ ├── battery2.jpg │ ├── brush1.jpg │ ├── cake.jpg │ ├── can.jpg │ ├── cans40.jpg │ ├── cardboard34.jpg │ ├── eyeglass.jpg │ ├── img_pretrain.jpg │ ├── img_selected.jpg │ ├── metal206.jpg │ ├── metal5.jpg │ ├── paper138.jpg │ ├── paper33.jpg │ ├── paper536.jpg │ ├── paper71.jpg │ ├── pen.jpg │ ├── plastic11.jpg │ ├── plastic130.jpg │ ├── plastic269.jpg │ ├── plastic36.jpg │ ├── plastic468.jpg │ ├── plastic49.jpg │ ├── plastic8.jpg │ └── test.jpg ├── templates ├── Trash_selected.html ├── Trash_selected_ok.html └── trash.html ├── trash_calssify_demo1 ├── opencv_test.py └── test.jpg ├── trash_classify_demo2 ├── cnn_test.py ├── train_label.txt └── trash_classify_demo2 │ ├── cnn_test.py │ └── trash_classify_dataset │ ├── labels.txt │ ├── test_label.txt │ ├── test_label1.txt │ ├── train_label.txt │ └── train_label1.txt ├── trash_classify_demo3 ├── calc_mean_pixel │ └── calc.py ├── download_pic │ ├── name.txt │ └── pacong.py ├── generate_label │ └── gen_label.py └── reshape_pic │ └── reshape.py ├── trash_classify_demo4 ├── myCanvas.py ├── static │ ├── icon │ │ ├── Harmful.png │ │ ├── Household.png │ │ ├── Recyclable.png │ │ ├── Residual.png │ │ ├── book.svg │ │ ├── font.png │ │ └── trashbox.svg │ ├── images │ │ ├── 2.jpg │ │ ├── png │ │ ├── user.png │ │ └── user2.png │ └── js │ │ └── jquery-1.11.1.js └── templates │ ├── Trash_selected.html │ ├── Trash_selected_ok.html │ └── trash.html ├── vgg16_model.py └── web_app.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/select_object.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/__pycache__/select_object.cpython-37.pyc -------------------------------------------------------------------------------- /__pycache__/vgg16_model.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/__pycache__/vgg16_model.cpython-37.pyc -------------------------------------------------------------------------------- /logs/test/events.out.tfevents.1562816327.DESKTOP-37OVUVC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/logs/test/events.out.tfevents.1562816327.DESKTOP-37OVUVC -------------------------------------------------------------------------------- /logs/test/events.out.tfevents.1562846121.DESKTOP-37OVUVC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/logs/test/events.out.tfevents.1562846121.DESKTOP-37OVUVC -------------------------------------------------------------------------------- /logs/test/events.out.tfevents.1562846188.DESKTOP-37OVUVC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/logs/test/events.out.tfevents.1562846188.DESKTOP-37OVUVC -------------------------------------------------------------------------------- /logs/test/events.out.tfevents.1562846946.DESKTOP-37OVUVC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/logs/test/events.out.tfevents.1562846946.DESKTOP-37OVUVC -------------------------------------------------------------------------------- /logs/test/events.out.tfevents.1562847249.DESKTOP-37OVUVC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/logs/test/events.out.tfevents.1562847249.DESKTOP-37OVUVC -------------------------------------------------------------------------------- /logs/test/events.out.tfevents.1562847881.DESKTOP-37OVUVC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/logs/test/events.out.tfevents.1562847881.DESKTOP-37OVUVC -------------------------------------------------------------------------------- /logs/test/events.out.tfevents.1562848050.DESKTOP-37OVUVC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/logs/test/events.out.tfevents.1562848050.DESKTOP-37OVUVC -------------------------------------------------------------------------------- /logs/test/events.out.tfevents.1562848355.DESKTOP-37OVUVC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/logs/test/events.out.tfevents.1562848355.DESKTOP-37OVUVC -------------------------------------------------------------------------------- /logs/test/events.out.tfevents.1562849385.DESKTOP-37OVUVC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/logs/test/events.out.tfevents.1562849385.DESKTOP-37OVUVC -------------------------------------------------------------------------------- /logs/train/events.out.tfevents.1562816324.DESKTOP-37OVUVC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/logs/train/events.out.tfevents.1562816324.DESKTOP-37OVUVC -------------------------------------------------------------------------------- /logs/train/events.out.tfevents.1562846118.DESKTOP-37OVUVC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/logs/train/events.out.tfevents.1562846118.DESKTOP-37OVUVC -------------------------------------------------------------------------------- /logs/train/events.out.tfevents.1562846186.DESKTOP-37OVUVC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/logs/train/events.out.tfevents.1562846186.DESKTOP-37OVUVC -------------------------------------------------------------------------------- /logs/train/events.out.tfevents.1562846943.DESKTOP-37OVUVC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/logs/train/events.out.tfevents.1562846943.DESKTOP-37OVUVC -------------------------------------------------------------------------------- /logs/train/events.out.tfevents.1562847246.DESKTOP-37OVUVC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/logs/train/events.out.tfevents.1562847246.DESKTOP-37OVUVC -------------------------------------------------------------------------------- /logs/train/events.out.tfevents.1562847878.DESKTOP-37OVUVC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/logs/train/events.out.tfevents.1562847878.DESKTOP-37OVUVC -------------------------------------------------------------------------------- /logs/train/events.out.tfevents.1562848047.DESKTOP-37OVUVC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/logs/train/events.out.tfevents.1562848047.DESKTOP-37OVUVC -------------------------------------------------------------------------------- /logs/train/events.out.tfevents.1562848352.DESKTOP-37OVUVC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/logs/train/events.out.tfevents.1562848352.DESKTOP-37OVUVC -------------------------------------------------------------------------------- /logs/train/events.out.tfevents.1562849382.DESKTOP-37OVUVC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/logs/train/events.out.tfevents.1562849382.DESKTOP-37OVUVC -------------------------------------------------------------------------------- /select_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/select_object.py -------------------------------------------------------------------------------- /static/icon/Harmful.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/static/icon/Harmful.png -------------------------------------------------------------------------------- /static/icon/Household.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/static/icon/Household.png -------------------------------------------------------------------------------- /static/icon/Recyclable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/static/icon/Recyclable.png -------------------------------------------------------------------------------- /static/icon/Residual.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/static/icon/Residual.png -------------------------------------------------------------------------------- /static/icon/book.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/static/icon/book.svg -------------------------------------------------------------------------------- /static/icon/font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/static/icon/font.png -------------------------------------------------------------------------------- /static/icon/trashbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/static/icon/trashbox.svg -------------------------------------------------------------------------------- /static/images/0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/static/images/0.jpg -------------------------------------------------------------------------------- /static/images/0B99854608AF55D8D86C17FAFEFC754D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/static/images/0B99854608AF55D8D86C17FAFEFC754D.png -------------------------------------------------------------------------------- /static/images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/static/images/1.png -------------------------------------------------------------------------------- /static/images/12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/static/images/12.jpg -------------------------------------------------------------------------------- /static/images/156017.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/static/images/156017.jpg -------------------------------------------------------------------------------- /static/images/21E211BF2C68730F350357087741FB63.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/static/images/21E211BF2C68730F350357087741FB63.jpg -------------------------------------------------------------------------------- /static/images/2462999.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/static/images/2462999.jpg -------------------------------------------------------------------------------- /static/images/2808DEA8B1F70F8410276C6FD9F3C80C.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/static/images/2808DEA8B1F70F8410276C6FD9F3C80C.jpg -------------------------------------------------------------------------------- /static/images/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/static/images/3.jpg -------------------------------------------------------------------------------- /static/images/3028.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/static/images/3028.jpg -------------------------------------------------------------------------------- /static/images/3283071.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/static/images/3283071.jpg -------------------------------------------------------------------------------- /static/images/3530076.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/static/images/3530076.jpg -------------------------------------------------------------------------------- /static/images/374344.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/static/images/374344.jpg -------------------------------------------------------------------------------- /static/images/38553.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/static/images/38553.jpg -------------------------------------------------------------------------------- /static/images/3872552.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/static/images/3872552.jpg -------------------------------------------------------------------------------- /static/images/397896.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/static/images/397896.jpg -------------------------------------------------------------------------------- /static/images/3jpg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/static/images/3jpg.jpg -------------------------------------------------------------------------------- /static/images/432D77254ECB1BE23CB131A3A353EF0F.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/static/images/432D77254ECB1BE23CB131A3A353EF0F.png -------------------------------------------------------------------------------- /static/images/443.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/static/images/443.jpg -------------------------------------------------------------------------------- /static/images/593DE80EF44298648A701824FB36A0D0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/static/images/593DE80EF44298648A701824FB36A0D0.png -------------------------------------------------------------------------------- /static/images/892111.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/static/images/892111.jpg -------------------------------------------------------------------------------- /static/images/97917.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/static/images/97917.jpg -------------------------------------------------------------------------------- /static/images/D25EF094910CD263A2B66B8AC69FD72A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/static/images/D25EF094910CD263A2B66B8AC69FD72A.png -------------------------------------------------------------------------------- /static/images/DA5BC918154FCCEF8D1C0152A7290C4F.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/static/images/DA5BC918154FCCEF8D1C0152A7290C4F.png -------------------------------------------------------------------------------- /static/images/DCC8760F04446898AA19C83C5A1E23A7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/static/images/DCC8760F04446898AA19C83C5A1E23A7.png -------------------------------------------------------------------------------- /static/images/Household2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/static/images/Household2.jpg -------------------------------------------------------------------------------- /static/images/IMG_8899.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/static/images/IMG_8899.JPG -------------------------------------------------------------------------------- /static/images/IMG_8901.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/static/images/IMG_8901.JPG -------------------------------------------------------------------------------- /static/images/IMG_8902.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/static/images/IMG_8902.JPG -------------------------------------------------------------------------------- /static/images/IMG_8906.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/static/images/IMG_8906.JPG -------------------------------------------------------------------------------- /static/images/battery.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/static/images/battery.jpg -------------------------------------------------------------------------------- /static/images/battery1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/static/images/battery1.jpg -------------------------------------------------------------------------------- /static/images/battery2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/static/images/battery2.jpg -------------------------------------------------------------------------------- /static/images/brush1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/static/images/brush1.jpg -------------------------------------------------------------------------------- /static/images/cake.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/static/images/cake.jpg -------------------------------------------------------------------------------- /static/images/can.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/static/images/can.jpg -------------------------------------------------------------------------------- /static/images/cans40.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/static/images/cans40.jpg -------------------------------------------------------------------------------- /static/images/cardboard34.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/static/images/cardboard34.jpg -------------------------------------------------------------------------------- /static/images/eyeglass.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/static/images/eyeglass.jpg -------------------------------------------------------------------------------- /static/images/img_pretrain.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/static/images/img_pretrain.jpg -------------------------------------------------------------------------------- /static/images/img_selected.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/static/images/img_selected.jpg -------------------------------------------------------------------------------- /static/images/metal206.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/static/images/metal206.jpg -------------------------------------------------------------------------------- /static/images/metal5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/static/images/metal5.jpg -------------------------------------------------------------------------------- /static/images/paper138.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/static/images/paper138.jpg -------------------------------------------------------------------------------- /static/images/paper33.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/static/images/paper33.jpg -------------------------------------------------------------------------------- /static/images/paper536.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/static/images/paper536.jpg -------------------------------------------------------------------------------- /static/images/paper71.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/static/images/paper71.jpg -------------------------------------------------------------------------------- /static/images/pen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/static/images/pen.jpg -------------------------------------------------------------------------------- /static/images/plastic11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/static/images/plastic11.jpg -------------------------------------------------------------------------------- /static/images/plastic130.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/static/images/plastic130.jpg -------------------------------------------------------------------------------- /static/images/plastic269.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/static/images/plastic269.jpg -------------------------------------------------------------------------------- /static/images/plastic36.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/static/images/plastic36.jpg -------------------------------------------------------------------------------- /static/images/plastic468.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/static/images/plastic468.jpg -------------------------------------------------------------------------------- /static/images/plastic49.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/static/images/plastic49.jpg -------------------------------------------------------------------------------- /static/images/plastic8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/static/images/plastic8.jpg -------------------------------------------------------------------------------- /static/images/test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/static/images/test.jpg -------------------------------------------------------------------------------- /templates/Trash_selected.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/templates/Trash_selected.html -------------------------------------------------------------------------------- /templates/Trash_selected_ok.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/templates/Trash_selected_ok.html -------------------------------------------------------------------------------- /templates/trash.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/templates/trash.html -------------------------------------------------------------------------------- /trash_calssify_demo1/opencv_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/trash_calssify_demo1/opencv_test.py -------------------------------------------------------------------------------- /trash_calssify_demo1/test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/trash_calssify_demo1/test.jpg -------------------------------------------------------------------------------- /trash_classify_demo2/cnn_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/trash_classify_demo2/cnn_test.py -------------------------------------------------------------------------------- /trash_classify_demo2/train_label.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/trash_classify_demo2/train_label.txt -------------------------------------------------------------------------------- /trash_classify_demo2/trash_classify_demo2/cnn_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/trash_classify_demo2/trash_classify_demo2/cnn_test.py -------------------------------------------------------------------------------- /trash_classify_demo2/trash_classify_demo2/trash_classify_dataset/labels.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/trash_classify_demo2/trash_classify_demo2/trash_classify_dataset/labels.txt -------------------------------------------------------------------------------- /trash_classify_demo2/trash_classify_demo2/trash_classify_dataset/test_label.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/trash_classify_demo2/trash_classify_demo2/trash_classify_dataset/test_label.txt -------------------------------------------------------------------------------- /trash_classify_demo2/trash_classify_demo2/trash_classify_dataset/test_label1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/trash_classify_demo2/trash_classify_demo2/trash_classify_dataset/test_label1.txt -------------------------------------------------------------------------------- /trash_classify_demo2/trash_classify_demo2/trash_classify_dataset/train_label.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/trash_classify_demo2/trash_classify_demo2/trash_classify_dataset/train_label.txt -------------------------------------------------------------------------------- /trash_classify_demo2/trash_classify_demo2/trash_classify_dataset/train_label1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/trash_classify_demo2/trash_classify_demo2/trash_classify_dataset/train_label1.txt -------------------------------------------------------------------------------- /trash_classify_demo3/calc_mean_pixel/calc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/trash_classify_demo3/calc_mean_pixel/calc.py -------------------------------------------------------------------------------- /trash_classify_demo3/download_pic/name.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/trash_classify_demo3/download_pic/name.txt -------------------------------------------------------------------------------- /trash_classify_demo3/download_pic/pacong.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/trash_classify_demo3/download_pic/pacong.py -------------------------------------------------------------------------------- /trash_classify_demo3/generate_label/gen_label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/trash_classify_demo3/generate_label/gen_label.py -------------------------------------------------------------------------------- /trash_classify_demo3/reshape_pic/reshape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/trash_classify_demo3/reshape_pic/reshape.py -------------------------------------------------------------------------------- /trash_classify_demo4/myCanvas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/trash_classify_demo4/myCanvas.py -------------------------------------------------------------------------------- /trash_classify_demo4/static/icon/Harmful.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/trash_classify_demo4/static/icon/Harmful.png -------------------------------------------------------------------------------- /trash_classify_demo4/static/icon/Household.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/trash_classify_demo4/static/icon/Household.png -------------------------------------------------------------------------------- /trash_classify_demo4/static/icon/Recyclable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/trash_classify_demo4/static/icon/Recyclable.png -------------------------------------------------------------------------------- /trash_classify_demo4/static/icon/Residual.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/trash_classify_demo4/static/icon/Residual.png -------------------------------------------------------------------------------- /trash_classify_demo4/static/icon/book.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/trash_classify_demo4/static/icon/book.svg -------------------------------------------------------------------------------- /trash_classify_demo4/static/icon/font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/trash_classify_demo4/static/icon/font.png -------------------------------------------------------------------------------- /trash_classify_demo4/static/icon/trashbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/trash_classify_demo4/static/icon/trashbox.svg -------------------------------------------------------------------------------- /trash_classify_demo4/static/images/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/trash_classify_demo4/static/images/2.jpg -------------------------------------------------------------------------------- /trash_classify_demo4/static/images/png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/trash_classify_demo4/static/images/png -------------------------------------------------------------------------------- /trash_classify_demo4/static/images/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/trash_classify_demo4/static/images/user.png -------------------------------------------------------------------------------- /trash_classify_demo4/static/images/user2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/trash_classify_demo4/static/images/user2.png -------------------------------------------------------------------------------- /trash_classify_demo4/static/js/jquery-1.11.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/trash_classify_demo4/static/js/jquery-1.11.1.js -------------------------------------------------------------------------------- /trash_classify_demo4/templates/Trash_selected.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/trash_classify_demo4/templates/Trash_selected.html -------------------------------------------------------------------------------- /trash_classify_demo4/templates/Trash_selected_ok.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/trash_classify_demo4/templates/Trash_selected_ok.html -------------------------------------------------------------------------------- /trash_classify_demo4/templates/trash.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/trash_classify_demo4/templates/trash.html -------------------------------------------------------------------------------- /vgg16_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/vgg16_model.py -------------------------------------------------------------------------------- /web_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jinec98/trash_classify/HEAD/web_app.py --------------------------------------------------------------------------------