├── Flask Deployed App ├── CNN.py ├── Procfile ├── Readme.md ├── app.py ├── disease_info.csv ├── requirements.txt ├── static │ └── uploads │ │ └── Readme.md ├── supplement_info.csv └── templates │ ├── base.html │ ├── contact-us.html │ ├── home.html │ ├── index.html │ ├── market.html │ └── submit.html ├── Model ├── Plant Disease Detection Code.ipynb ├── Plant Disease Detection Code.md ├── Plant Disease Detection-code.pdf ├── Readme.md └── model.JPG ├── README.md ├── demo_images ├── 1.png ├── 2.png ├── 3.png ├── 4.JPG ├── 5.png └── Readme.md └── test_images ├── Apple_ceder_apple_rust.JPG ├── Apple_scab.JPG ├── Grape_esca.JPG ├── Readme.md ├── apple_black_rot.JPG ├── apple_healthy.JPG ├── background_without_leaves.jpg ├── blueberry_healthy.JPG ├── cherry_healthy.JPG ├── cherry_powdery_mildew.JPG ├── corn_cercospora_leaf.JPG ├── corn_common_rust.JPG ├── corn_healthy.jpg ├── corn_northen_leaf_blight.JPG ├── grape_black_rot.JPG ├── grape_healthy.JPG ├── grape_leaf_blight.JPG ├── orange_haunglongbing.JPG ├── peach_bacterial_spot.JPG ├── peach_healthy.JPG ├── pepper_bacterial_spot.JPG ├── pepper_bell_healthy.JPG ├── potato_early_blight.JPG ├── potato_healthy.JPG ├── potato_late_blight.JPG ├── raspberry_healthy.JPG ├── soyaben healthy.JPG ├── squash_powdery_mildew.JPG ├── starwberry_healthy.JPG ├── starwberry_leaf_scorch.JPG ├── tomato-bacterial-spot2.jpg ├── tomato-leaf-curl-virus3.jpg ├── tomato-mold.jpg ├── tomato_bacterial_spot.JPG ├── tomato_early_blight.JPG ├── tomato_healthy.JPG ├── tomato_late_blight.JPG ├── tomato_leaf_mold.JPG ├── tomato_mosaic_virus.JPG ├── tomato_septoria_leaf_spot.JPG ├── tomato_spider_mites_two_spotted_spider_mites.JPG ├── tomato_target_spot.JPG ├── tomato_yellow_leaf_curl_virus.JPG └── tomato_yellow_leaf_curl_virus2.jpg /Flask Deployed App/CNN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manthan89-py/Plant-Disease-Detection/HEAD/Flask Deployed App/CNN.py -------------------------------------------------------------------------------- /Flask Deployed App/Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn app:app -------------------------------------------------------------------------------- /Flask Deployed App/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manthan89-py/Plant-Disease-Detection/HEAD/Flask Deployed App/Readme.md -------------------------------------------------------------------------------- /Flask Deployed App/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manthan89-py/Plant-Disease-Detection/HEAD/Flask Deployed App/app.py -------------------------------------------------------------------------------- /Flask Deployed App/disease_info.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manthan89-py/Plant-Disease-Detection/HEAD/Flask Deployed App/disease_info.csv -------------------------------------------------------------------------------- /Flask Deployed App/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manthan89-py/Plant-Disease-Detection/HEAD/Flask Deployed App/requirements.txt -------------------------------------------------------------------------------- /Flask Deployed App/static/uploads/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manthan89-py/Plant-Disease-Detection/HEAD/Flask Deployed App/static/uploads/Readme.md -------------------------------------------------------------------------------- /Flask Deployed App/supplement_info.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manthan89-py/Plant-Disease-Detection/HEAD/Flask Deployed App/supplement_info.csv -------------------------------------------------------------------------------- /Flask Deployed App/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manthan89-py/Plant-Disease-Detection/HEAD/Flask Deployed App/templates/base.html -------------------------------------------------------------------------------- /Flask Deployed App/templates/contact-us.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manthan89-py/Plant-Disease-Detection/HEAD/Flask Deployed App/templates/contact-us.html -------------------------------------------------------------------------------- /Flask Deployed App/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manthan89-py/Plant-Disease-Detection/HEAD/Flask Deployed App/templates/home.html -------------------------------------------------------------------------------- /Flask Deployed App/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manthan89-py/Plant-Disease-Detection/HEAD/Flask Deployed App/templates/index.html -------------------------------------------------------------------------------- /Flask Deployed App/templates/market.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manthan89-py/Plant-Disease-Detection/HEAD/Flask Deployed App/templates/market.html -------------------------------------------------------------------------------- /Flask Deployed App/templates/submit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manthan89-py/Plant-Disease-Detection/HEAD/Flask Deployed App/templates/submit.html -------------------------------------------------------------------------------- /Model/Plant Disease Detection Code.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manthan89-py/Plant-Disease-Detection/HEAD/Model/Plant Disease Detection Code.ipynb -------------------------------------------------------------------------------- /Model/Plant Disease Detection Code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manthan89-py/Plant-Disease-Detection/HEAD/Model/Plant Disease Detection Code.md -------------------------------------------------------------------------------- /Model/Plant Disease Detection-code.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manthan89-py/Plant-Disease-Detection/HEAD/Model/Plant Disease Detection-code.pdf -------------------------------------------------------------------------------- /Model/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manthan89-py/Plant-Disease-Detection/HEAD/Model/Readme.md -------------------------------------------------------------------------------- /Model/model.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manthan89-py/Plant-Disease-Detection/HEAD/Model/model.JPG -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manthan89-py/Plant-Disease-Detection/HEAD/README.md -------------------------------------------------------------------------------- /demo_images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manthan89-py/Plant-Disease-Detection/HEAD/demo_images/1.png -------------------------------------------------------------------------------- /demo_images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manthan89-py/Plant-Disease-Detection/HEAD/demo_images/2.png -------------------------------------------------------------------------------- /demo_images/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manthan89-py/Plant-Disease-Detection/HEAD/demo_images/3.png -------------------------------------------------------------------------------- /demo_images/4.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manthan89-py/Plant-Disease-Detection/HEAD/demo_images/4.JPG -------------------------------------------------------------------------------- /demo_images/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manthan89-py/Plant-Disease-Detection/HEAD/demo_images/5.png -------------------------------------------------------------------------------- /demo_images/Readme.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test_images/Apple_ceder_apple_rust.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manthan89-py/Plant-Disease-Detection/HEAD/test_images/Apple_ceder_apple_rust.JPG -------------------------------------------------------------------------------- /test_images/Apple_scab.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manthan89-py/Plant-Disease-Detection/HEAD/test_images/Apple_scab.JPG -------------------------------------------------------------------------------- /test_images/Grape_esca.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manthan89-py/Plant-Disease-Detection/HEAD/test_images/Grape_esca.JPG -------------------------------------------------------------------------------- /test_images/Readme.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test_images/apple_black_rot.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manthan89-py/Plant-Disease-Detection/HEAD/test_images/apple_black_rot.JPG -------------------------------------------------------------------------------- /test_images/apple_healthy.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manthan89-py/Plant-Disease-Detection/HEAD/test_images/apple_healthy.JPG -------------------------------------------------------------------------------- /test_images/background_without_leaves.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manthan89-py/Plant-Disease-Detection/HEAD/test_images/background_without_leaves.jpg -------------------------------------------------------------------------------- /test_images/blueberry_healthy.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manthan89-py/Plant-Disease-Detection/HEAD/test_images/blueberry_healthy.JPG -------------------------------------------------------------------------------- /test_images/cherry_healthy.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manthan89-py/Plant-Disease-Detection/HEAD/test_images/cherry_healthy.JPG -------------------------------------------------------------------------------- /test_images/cherry_powdery_mildew.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manthan89-py/Plant-Disease-Detection/HEAD/test_images/cherry_powdery_mildew.JPG -------------------------------------------------------------------------------- /test_images/corn_cercospora_leaf.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manthan89-py/Plant-Disease-Detection/HEAD/test_images/corn_cercospora_leaf.JPG -------------------------------------------------------------------------------- /test_images/corn_common_rust.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manthan89-py/Plant-Disease-Detection/HEAD/test_images/corn_common_rust.JPG -------------------------------------------------------------------------------- /test_images/corn_healthy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manthan89-py/Plant-Disease-Detection/HEAD/test_images/corn_healthy.jpg -------------------------------------------------------------------------------- /test_images/corn_northen_leaf_blight.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manthan89-py/Plant-Disease-Detection/HEAD/test_images/corn_northen_leaf_blight.JPG -------------------------------------------------------------------------------- /test_images/grape_black_rot.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manthan89-py/Plant-Disease-Detection/HEAD/test_images/grape_black_rot.JPG -------------------------------------------------------------------------------- /test_images/grape_healthy.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manthan89-py/Plant-Disease-Detection/HEAD/test_images/grape_healthy.JPG -------------------------------------------------------------------------------- /test_images/grape_leaf_blight.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manthan89-py/Plant-Disease-Detection/HEAD/test_images/grape_leaf_blight.JPG -------------------------------------------------------------------------------- /test_images/orange_haunglongbing.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manthan89-py/Plant-Disease-Detection/HEAD/test_images/orange_haunglongbing.JPG -------------------------------------------------------------------------------- /test_images/peach_bacterial_spot.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manthan89-py/Plant-Disease-Detection/HEAD/test_images/peach_bacterial_spot.JPG -------------------------------------------------------------------------------- /test_images/peach_healthy.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manthan89-py/Plant-Disease-Detection/HEAD/test_images/peach_healthy.JPG -------------------------------------------------------------------------------- /test_images/pepper_bacterial_spot.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manthan89-py/Plant-Disease-Detection/HEAD/test_images/pepper_bacterial_spot.JPG -------------------------------------------------------------------------------- /test_images/pepper_bell_healthy.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manthan89-py/Plant-Disease-Detection/HEAD/test_images/pepper_bell_healthy.JPG -------------------------------------------------------------------------------- /test_images/potato_early_blight.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manthan89-py/Plant-Disease-Detection/HEAD/test_images/potato_early_blight.JPG -------------------------------------------------------------------------------- /test_images/potato_healthy.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manthan89-py/Plant-Disease-Detection/HEAD/test_images/potato_healthy.JPG -------------------------------------------------------------------------------- /test_images/potato_late_blight.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manthan89-py/Plant-Disease-Detection/HEAD/test_images/potato_late_blight.JPG -------------------------------------------------------------------------------- /test_images/raspberry_healthy.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manthan89-py/Plant-Disease-Detection/HEAD/test_images/raspberry_healthy.JPG -------------------------------------------------------------------------------- /test_images/soyaben healthy.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manthan89-py/Plant-Disease-Detection/HEAD/test_images/soyaben healthy.JPG -------------------------------------------------------------------------------- /test_images/squash_powdery_mildew.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manthan89-py/Plant-Disease-Detection/HEAD/test_images/squash_powdery_mildew.JPG -------------------------------------------------------------------------------- /test_images/starwberry_healthy.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manthan89-py/Plant-Disease-Detection/HEAD/test_images/starwberry_healthy.JPG -------------------------------------------------------------------------------- /test_images/starwberry_leaf_scorch.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manthan89-py/Plant-Disease-Detection/HEAD/test_images/starwberry_leaf_scorch.JPG -------------------------------------------------------------------------------- /test_images/tomato-bacterial-spot2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manthan89-py/Plant-Disease-Detection/HEAD/test_images/tomato-bacterial-spot2.jpg -------------------------------------------------------------------------------- /test_images/tomato-leaf-curl-virus3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manthan89-py/Plant-Disease-Detection/HEAD/test_images/tomato-leaf-curl-virus3.jpg -------------------------------------------------------------------------------- /test_images/tomato-mold.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manthan89-py/Plant-Disease-Detection/HEAD/test_images/tomato-mold.jpg -------------------------------------------------------------------------------- /test_images/tomato_bacterial_spot.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manthan89-py/Plant-Disease-Detection/HEAD/test_images/tomato_bacterial_spot.JPG -------------------------------------------------------------------------------- /test_images/tomato_early_blight.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manthan89-py/Plant-Disease-Detection/HEAD/test_images/tomato_early_blight.JPG -------------------------------------------------------------------------------- /test_images/tomato_healthy.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manthan89-py/Plant-Disease-Detection/HEAD/test_images/tomato_healthy.JPG -------------------------------------------------------------------------------- /test_images/tomato_late_blight.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manthan89-py/Plant-Disease-Detection/HEAD/test_images/tomato_late_blight.JPG -------------------------------------------------------------------------------- /test_images/tomato_leaf_mold.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manthan89-py/Plant-Disease-Detection/HEAD/test_images/tomato_leaf_mold.JPG -------------------------------------------------------------------------------- /test_images/tomato_mosaic_virus.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manthan89-py/Plant-Disease-Detection/HEAD/test_images/tomato_mosaic_virus.JPG -------------------------------------------------------------------------------- /test_images/tomato_septoria_leaf_spot.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manthan89-py/Plant-Disease-Detection/HEAD/test_images/tomato_septoria_leaf_spot.JPG -------------------------------------------------------------------------------- /test_images/tomato_spider_mites_two_spotted_spider_mites.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manthan89-py/Plant-Disease-Detection/HEAD/test_images/tomato_spider_mites_two_spotted_spider_mites.JPG -------------------------------------------------------------------------------- /test_images/tomato_target_spot.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manthan89-py/Plant-Disease-Detection/HEAD/test_images/tomato_target_spot.JPG -------------------------------------------------------------------------------- /test_images/tomato_yellow_leaf_curl_virus.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manthan89-py/Plant-Disease-Detection/HEAD/test_images/tomato_yellow_leaf_curl_virus.JPG -------------------------------------------------------------------------------- /test_images/tomato_yellow_leaf_curl_virus2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manthan89-py/Plant-Disease-Detection/HEAD/test_images/tomato_yellow_leaf_curl_virus2.jpg --------------------------------------------------------------------------------