Project Review 3
Project Review 3
Effective classification of
2020 Sun et al Custom CNN
rice leaf diseases.
Transfer Learning (VGG, Improved accuracy with
2021 Khan et al ResNet) fewer images using
pretrained models.
2024 Reddy et al. (hypothetical) CNN + IoT Edge Real-time disease detection
Deployment using CNN on field-edge
devices.
LITERATURE SURVEY ON
THIS TOPIC
Traditional disease identification methods depend on expert
observation—slow and inconsistent.
Machine learning models like SVM and Random Forest have
been used but rely on handcrafted features.
CNNs outperform traditional models by learning complex
image features automatically.
Pretrained CNN models (VGG16, ResNet) have shown
promising results in rice disease detection.
UAV + CNN integration enables large-scale, real-time
monitoring.
LITERATURE SURVEY ON
METHODOLOGY
• Manual methods are time-consuming, error-prone, and
subjective.
• Early ML models like Random Forest and SVM lacked
generalization.
• CNNs outperform traditional models in scalability and
feature extraction.
• Transfer learning reduces data dependency using pretrained
models (e.g., VGG16, ResNet).
• UAV + CNN models show potential for large-scale field-
level detection.
• Lightweight CNNs like MobileNet explored for mobile
deployment.
RESEARCH GAP IN
LITERATURE REVIEW
Lack of large, diverse rice leaf disease datasets.
Existing models fail at early-stage symptom detection.
High visual similarity causes misclassification.
Poor real-world performance due to limited generalization.
Few models are optimized for real-time/mobile deployment.
ARCHITECTURE
DIAGRAM
DATASET
Source: Kaggle and self-collected rice
leaf images.
Classes: Brown Spot, Leaf Smut,
Blast, Bacterial Blight, and Tungro.
Image Format: RGB images, resized
to 128×128 pixels.
Total Samples: ~5,000 images after
augmentation.
Preprocessing: Normalization, noise
reduction, and augmentation (rotation,
flipping, scaling).
Split Ratio: 70% training, 20%
validation, 10% testing.
INPUT AND RESULTS
Input: RGB image of a rice leaf (128×128 resolution)
Preprocessing: Normalization, resizing, augmentation
Model Used: CNN with convolutional and pooling layers
Output: Predicted rice leaf disease class (e.g., Blast, Brown Spot)
METHODOLOGY OF THE
PROPOSED WORK IN
DETAIL
Collection of rice leaf images (from
Kaggle and self-collected)
Image preprocessing: resizing
(128×128), normalization,
augmentation
Dataset split into train, validation, and
test sets
Custom CNN architecture built and
trained on the dataset
Model optimized using Adam
optimizer and categorical cross-
entropy
Evaluation using accuracy, precision,
recall, and F1-score
ALGORITHM USED IN
DETAIL
ALGORITHM USED IN
DETAIL
Custom Convolutional Neural Network (CNN) architecture