Logo Lanfrica

Rushikesh-mali/AgroVision-AI

Domain:

agriculture

Record type:

software
Creator:
Rus
Host:
AgroVision-AI # 🌿 AgroVision AI ### Intelligent Plant Disease Detection System AgroVision is an AI-powered plant disease detection platform that helps farmers, students, and researchers instantly identify plant diseases using image analysis. --- ## πŸš€ Features - πŸ“Έ Upload or capture plant leaf images - πŸ€– AI-powered disease detection using deep learning (MobileNetV2) - πŸ“Š Confidence score + severity prediction - πŸ’Š Detailed treatment, cause & prevention suggestions - 🌍 Multi-language support (EN / HI / MR) - ⚑ Fast & responsive UI --- ## 🧠 Supported Plants ### πŸ† Eggplant - Healthy - Insect Pest - Leaf Spot - Mosaic Virus - Small Leaf - White Mold - Wilt ### πŸ‡ Grapes - Black Rot - ESCA - Healthy - Leaf Blight ### 🍊 Orange - Citrus Canker - Nutrient Deficiency - Healthy ### πŸ₯” Potato - Early Blight - Late Blight - Healthy ### πŸ… Tomato - Early Blight - Late Blight - Leaf Mold - Healthy --- ## πŸ—οΈ Tech Stack ### Frontend - HTML5 - Tailwind CSS - JavaScript ### Backend - FastAPI (Python) ### AI / ML - TensorFlow - MobileNetV2 (Transfer Learning) --- ## βš™οΈ Project Structure AgroVisionAI/ β”‚ β”œβ”€β”€ agrovision-frontend/ # Frontend UI β”œβ”€β”€ dataset/ # (Not included in repo) β”œβ”€β”€ agrovision_model.h5 # Trained model (optional) β”œβ”€β”€ disease_info.json # Disease details β”œβ”€β”€ main.py # FastAPI backend β”œβ”€β”€ train_model.py # Model training script β”œβ”€β”€ .gitignore └── README.md --- ## πŸ§ͺ How to Run ### 1️⃣ Clone Repository ```bash git clone github.com cd AgroVision-AI ### 2️⃣ Setup Python Environment python -m venv agrovision_env agrovision_env\Scripts\activate pip install -r requirements.txt ###3️⃣ Run Backend (FastAPI) uvicorn main:app --reload πŸ‘‰ Backend runs at: 127.0.0.1 4️⃣ Run Frontend cd agrovision-frontend npx live-server πŸ“‘ API Endpoint POST /predict Request: Image file (form-data) Response: { "prediction": { "disease": "Eggplant Insect Pest", "confidence": 0.87, "severity": "Moderate" }, "details": { "cause": "...", "treatme …