惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

aimingoo的专栏
aimingoo的专栏
Engineering at Meta
Engineering at Meta
有赞技术团队
有赞技术团队
博客园_首页
Apple Machine Learning Research
Apple Machine Learning Research
Vercel News
Vercel News
G
Google Developers Blog
Blog — PlanetScale
Blog — PlanetScale
IT之家
IT之家
MongoDB | Blog
MongoDB | Blog
Y
Y Combinator Blog
B
Blog
The GitHub Blog
The GitHub Blog
M
MIT News - Artificial intelligence
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Stack Overflow Blog
Stack Overflow Blog
C
Check Point Blog
Microsoft Azure Blog
Microsoft Azure Blog
D
DataBreaches.Net
I
InfoQ
Recent Announcements
Recent Announcements
阮一峰的网络日志
阮一峰的网络日志
腾讯CDC
H
Help Net Security

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
🌿 Plant Disease Detection System
Somnath Das · 2026-05-06 · via DEV Community
Cover image for 🌿 Plant Disease Detection System

Somnath Das

Agriculture is the backbone of many economies, yet plant diseases continue to cause massive crop losses every year. What if farmers could detect diseases instantly using just an image?

That’s exactly what this project does 👇

🚀 Overview

The Plant Disease Detection System is an AI-powered web application that leverages Deep Learning (CNN) to identify plant diseases from leaf images. Along with detection, it also provides fertilizer recommendations, treatment steps, and prevention guidance.

Built using TensorFlow + Django, this project bridges the gap between AI and real-world agriculture 🌾


🎯 Key Features

  • 🔍 Real-time Disease Detection
    Upload a plant leaf image and get instant predictions

  • 🎯 High Accuracy
    Achieves 81–84% accuracy across 38 disease classes

  • 💊 Smart Recommendations
    Get treatment steps, fertilizers, and prevention tips

  • 📊 Prediction History
    Track all predictions with timestamps

  • 📱 Responsive UI
    Works smoothly on desktop, tablet, and mobile

  • 🚀 REST API Support
    Easy integration with mobile apps

  • 🔐 Secure System
    CSRF protection, file validation, and sanitized inputs


🌾 Supported Crops & Diseases

The model supports 38 disease classes across multiple crops:

  • 🍅 Tomato (10 classes)
  • 🥔 Potato (3 classes)
  • 🌽 Corn (4 classes)
  • 🌶️ Pepper (2 classes)
  • 🍎 Additional crops included

📸 Application Workflow

  1. Upload a leaf image
  2. Model analyzes using CNN
  3. Returns:
  • Disease name
  • Confidence score
  • Treatment
  • Fertilizer advice
  • Prevention tips

🚀 Quick Start

🔧 Prerequisites

  • Python 3.8+
  • pip
  • Virtual environment (recommended)
  • 4GB RAM
  • 2GB storage

⚙️ Installation

# Clone repo
git clone https://github.com/dassomnath99/Plant-Disease-Detection.git
cd Plant-Disease-Detection

# Create virtual environment
python -m venv venv

# Activate (Windows)
venv\Scripts\activate

# Activate (Linux/macOS)
source venv/bin/activate

# Install dependencies
pip install -r requirements.txt

Enter fullscreen mode Exit fullscreen mode


🤖 Model Setup

Option A: Use Pre-trained Model

Place these files in /models:

  • plant_disease_model.h5
  • class_names.json

Option B: Train Your Own Model

python download_data.py
python train_with_test.py

Enter fullscreen mode Exit fullscreen mode


🌐 Run Django Server

python manage.py makemigrations
python manage.py migrate
python manage.py runserver

Enter fullscreen mode Exit fullscreen mode

Open 👉 http://127.0.0.1:8000/


🔌 API Example

Predict Disease

POST /api/predict/

Enter fullscreen mode Exit fullscreen mode

Response:

{
  "success": true,
  "prediction": {
    "disease": "Tomato_Late_blight",
    "confidence": 94.32,
    "plant_type": "Tomato",
    "treatment": "Apply fungicide",
    "prevention": "Avoid wet foliage"
  }
}

Enter fullscreen mode Exit fullscreen mode


🧪 Model Performance

Metric Training Validation Test
Accuracy 82.32% 77.15% 68.78%

📊 Training Details

  • Dataset: PlantVillage (54K+ images)
  • Architecture: MobileNetV2 (Transfer Learning)
  • Framework: TensorFlow 2.15
  • Input Size: 224x224
  • Model Size: ~13MB

🛠️ Tech Stack

Backend

  • Django
  • Django REST Framework
  • TensorFlow / Keras

Frontend

  • HTML5
  • CSS3
  • JavaScript

ML Techniques

  • CNN (MobileNetV2)
  • Data Augmentation
  • Adam Optimizer

📱 Mobile Integration

Works seamlessly with:

  • React Native
  • Flutter

You can easily send images using multipart API requests.


🚀 Deployment Options

🔹 Heroku

heroku create your-app-name
git push heroku main

Enter fullscreen mode Exit fullscreen mode

🔹 Docker

docker build -t plant-disease-detection .
docker run -p 8000:8000 plant-disease-detection

Enter fullscreen mode Exit fullscreen mode


🐛 Common Issues

Model not loading?

ls models/plant_disease_model.h5

Enter fullscreen mode Exit fullscreen mode

Dependency issues?

pip install -r requirements.txt --force-reinstall

Enter fullscreen mode Exit fullscreen mode

CORS error?

CORS_ALLOW_ALL_ORIGINS = True

Enter fullscreen mode Exit fullscreen mode


🤝 Contributing

Contributions are welcome!

  1. Fork the repo
  2. Create a branch
  3. Commit changes
  4. Open PR

📝 License

MIT License


👨‍💻 Author

Somnath Das


🙏 Acknowledgments

  • PlantVillage Dataset (Kaggle)
  • TensorFlow Team
  • Django Community

💡 Final Thoughts

This project is more than just a machine learning model — it’s a step toward smart agriculture 🌍

By combining AI + Web Development, we can empower farmers with tools that are:

  • Fast
  • Accurate
  • Accessible

💬 If you found this useful, consider starring the repo and sharing your feedback!