├── GreenDoctor ├── .gitignore ├── .idea │ ├── codeStyles │ │ ├── Project.xml │ │ └── codeStyleConfig.xml │ ├── encodings.xml │ ├── jarRepositories.xml │ ├── misc.xml │ ├── runConfigurations.xml │ └── vcs.xml ├── app │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── isomora │ │ │ └── com │ │ │ └── greendoctor │ │ │ └── ExampleInstrumentedTest.kt │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ │ ├── plant_disease_model.tflite │ │ │ ├── plant_labels.txt │ │ │ └── soybean.JPG │ │ ├── ic_launcher-web.png │ │ ├── java │ │ │ └── isomora │ │ │ │ └── com │ │ │ │ └── greendoctor │ │ │ │ ├── Classifier.kt │ │ │ │ └── MainActivity.kt │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ └── activity_main.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── ic_launcher_background.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── isomora │ │ └── com │ │ └── greendoctor │ │ └── ExampleUnitTest.kt ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── Plant_Diseases_Detection_with_TF2_V2.ipynb ├── Plant_Diseases_Detection_with_TF2_V4.ipynb ├── README.md ├── _config.yml ├── assets ├── PlantVillagefarmer.jpg ├── detect_crop_disease_in_africa.jpg ├── greendoctor.png └── over.png └── categories.json /GreenDoctor/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obeshor/Plant-Diseases-Detector/HEAD/GreenDoctor/.gitignore -------------------------------------------------------------------------------- /GreenDoctor/.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obeshor/Plant-Diseases-Detector/HEAD/GreenDoctor/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /GreenDoctor/.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obeshor/Plant-Diseases-Detector/HEAD/GreenDoctor/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /GreenDoctor/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obeshor/Plant-Diseases-Detector/HEAD/GreenDoctor/.idea/encodings.xml -------------------------------------------------------------------------------- /GreenDoctor/.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obeshor/Plant-Diseases-Detector/HEAD/GreenDoctor/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /GreenDoctor/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obeshor/Plant-Diseases-Detector/HEAD/GreenDoctor/.idea/misc.xml -------------------------------------------------------------------------------- /GreenDoctor/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obeshor/Plant-Diseases-Detector/HEAD/GreenDoctor/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /GreenDoctor/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obeshor/Plant-Diseases-Detector/HEAD/GreenDoctor/.idea/vcs.xml -------------------------------------------------------------------------------- /GreenDoctor/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obeshor/Plant-Diseases-Detector/HEAD/GreenDoctor/app/build.gradle -------------------------------------------------------------------------------- /GreenDoctor/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obeshor/Plant-Diseases-Detector/HEAD/GreenDoctor/app/proguard-rules.pro -------------------------------------------------------------------------------- /GreenDoctor/app/src/androidTest/java/isomora/com/greendoctor/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obeshor/Plant-Diseases-Detector/HEAD/GreenDoctor/app/src/androidTest/java/isomora/com/greendoctor/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /GreenDoctor/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obeshor/Plant-Diseases-Detector/HEAD/GreenDoctor/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /GreenDoctor/app/src/main/assets/plant_disease_model.tflite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obeshor/Plant-Diseases-Detector/HEAD/GreenDoctor/app/src/main/assets/plant_disease_model.tflite -------------------------------------------------------------------------------- /GreenDoctor/app/src/main/assets/plant_labels.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obeshor/Plant-Diseases-Detector/HEAD/GreenDoctor/app/src/main/assets/plant_labels.txt -------------------------------------------------------------------------------- /GreenDoctor/app/src/main/assets/soybean.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obeshor/Plant-Diseases-Detector/HEAD/GreenDoctor/app/src/main/assets/soybean.JPG -------------------------------------------------------------------------------- /GreenDoctor/app/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obeshor/Plant-Diseases-Detector/HEAD/GreenDoctor/app/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /GreenDoctor/app/src/main/java/isomora/com/greendoctor/Classifier.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obeshor/Plant-Diseases-Detector/HEAD/GreenDoctor/app/src/main/java/isomora/com/greendoctor/Classifier.kt -------------------------------------------------------------------------------- /GreenDoctor/app/src/main/java/isomora/com/greendoctor/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obeshor/Plant-Diseases-Detector/HEAD/GreenDoctor/app/src/main/java/isomora/com/greendoctor/MainActivity.kt -------------------------------------------------------------------------------- /GreenDoctor/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obeshor/Plant-Diseases-Detector/HEAD/GreenDoctor/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /GreenDoctor/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obeshor/Plant-Diseases-Detector/HEAD/GreenDoctor/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /GreenDoctor/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obeshor/Plant-Diseases-Detector/HEAD/GreenDoctor/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /GreenDoctor/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obeshor/Plant-Diseases-Detector/HEAD/GreenDoctor/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /GreenDoctor/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obeshor/Plant-Diseases-Detector/HEAD/GreenDoctor/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /GreenDoctor/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obeshor/Plant-Diseases-Detector/HEAD/GreenDoctor/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /GreenDoctor/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obeshor/Plant-Diseases-Detector/HEAD/GreenDoctor/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /GreenDoctor/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obeshor/Plant-Diseases-Detector/HEAD/GreenDoctor/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /GreenDoctor/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obeshor/Plant-Diseases-Detector/HEAD/GreenDoctor/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /GreenDoctor/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obeshor/Plant-Diseases-Detector/HEAD/GreenDoctor/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /GreenDoctor/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obeshor/Plant-Diseases-Detector/HEAD/GreenDoctor/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /GreenDoctor/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obeshor/Plant-Diseases-Detector/HEAD/GreenDoctor/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /GreenDoctor/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obeshor/Plant-Diseases-Detector/HEAD/GreenDoctor/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /GreenDoctor/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obeshor/Plant-Diseases-Detector/HEAD/GreenDoctor/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /GreenDoctor/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obeshor/Plant-Diseases-Detector/HEAD/GreenDoctor/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /GreenDoctor/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obeshor/Plant-Diseases-Detector/HEAD/GreenDoctor/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /GreenDoctor/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obeshor/Plant-Diseases-Detector/HEAD/GreenDoctor/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /GreenDoctor/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obeshor/Plant-Diseases-Detector/HEAD/GreenDoctor/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /GreenDoctor/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obeshor/Plant-Diseases-Detector/HEAD/GreenDoctor/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /GreenDoctor/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obeshor/Plant-Diseases-Detector/HEAD/GreenDoctor/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /GreenDoctor/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obeshor/Plant-Diseases-Detector/HEAD/GreenDoctor/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /GreenDoctor/app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obeshor/Plant-Diseases-Detector/HEAD/GreenDoctor/app/src/main/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /GreenDoctor/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obeshor/Plant-Diseases-Detector/HEAD/GreenDoctor/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /GreenDoctor/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obeshor/Plant-Diseases-Detector/HEAD/GreenDoctor/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /GreenDoctor/app/src/test/java/isomora/com/greendoctor/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obeshor/Plant-Diseases-Detector/HEAD/GreenDoctor/app/src/test/java/isomora/com/greendoctor/ExampleUnitTest.kt -------------------------------------------------------------------------------- /GreenDoctor/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obeshor/Plant-Diseases-Detector/HEAD/GreenDoctor/build.gradle -------------------------------------------------------------------------------- /GreenDoctor/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obeshor/Plant-Diseases-Detector/HEAD/GreenDoctor/gradle.properties -------------------------------------------------------------------------------- /GreenDoctor/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obeshor/Plant-Diseases-Detector/HEAD/GreenDoctor/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /GreenDoctor/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obeshor/Plant-Diseases-Detector/HEAD/GreenDoctor/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /GreenDoctor/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obeshor/Plant-Diseases-Detector/HEAD/GreenDoctor/gradlew -------------------------------------------------------------------------------- /GreenDoctor/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obeshor/Plant-Diseases-Detector/HEAD/GreenDoctor/gradlew.bat -------------------------------------------------------------------------------- /GreenDoctor/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Plant_Diseases_Detection_with_TF2_V2.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obeshor/Plant-Diseases-Detector/HEAD/Plant_Diseases_Detection_with_TF2_V2.ipynb -------------------------------------------------------------------------------- /Plant_Diseases_Detection_with_TF2_V4.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obeshor/Plant-Diseases-Detector/HEAD/Plant_Diseases_Detection_with_TF2_V4.ipynb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obeshor/Plant-Diseases-Detector/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obeshor/Plant-Diseases-Detector/HEAD/_config.yml -------------------------------------------------------------------------------- /assets/PlantVillagefarmer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obeshor/Plant-Diseases-Detector/HEAD/assets/PlantVillagefarmer.jpg -------------------------------------------------------------------------------- /assets/detect_crop_disease_in_africa.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obeshor/Plant-Diseases-Detector/HEAD/assets/detect_crop_disease_in_africa.jpg -------------------------------------------------------------------------------- /assets/greendoctor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obeshor/Plant-Diseases-Detector/HEAD/assets/greendoctor.png -------------------------------------------------------------------------------- /assets/over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obeshor/Plant-Diseases-Detector/HEAD/assets/over.png -------------------------------------------------------------------------------- /categories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obeshor/Plant-Diseases-Detector/HEAD/categories.json --------------------------------------------------------------------------------