AI for Pest Detection in Agriculture
1. Role of Computer Vision in Identifying Pests
Role of Computer Vision in Identifying Pests
Computer vision enables automated pest detection by extracting discriminative features from high-resolution images of crops. The process begins with image acquisition using multispectral or hyperspectral cameras mounted on drones or ground-based systems. These sensors capture data beyond the visible spectrum, including near-infrared (NIR) and short-wave infrared (SWIR) bands, which reveal stress signatures invisible to the human eye.
Feature Extraction and Representation
For pest classification, convolutional neural networks (CNNs) learn hierarchical representations through successive layers of convolution, pooling, and nonlinear activation. The first layers detect low-level features like edges and textures, while deeper layers assemble these into pest-specific morphological patterns. A ResNet-50 architecture, for instance, computes feature maps F at layer l as:
where ℋ denotes identity mapping and ℱ represents residual functions parameterized by weights Wl. This skip connection mitigates vanishing gradients in deep networks.
Spatial Attention Mechanisms
Pest detection benefits from attention modules that highlight salient regions. A squeeze-and-excitation block recalibrates channel-wise feature responses:
where zc is global average-pooled spatial information, δ is ReLU, and σ is sigmoid activation. The resulting excitation vector sc rescales feature maps to emphasize pest-relevant channels.
Multiscale Analysis
Feature pyramid networks (FPNs) handle size variation in pests by fusing multiresolution feature maps. Let Pi be the pyramid level for stride 2i:
where Ci is the backbone feature at level i. This preserves both high-level semantic and low-level spatial information.
Case Study: Aphid Detection in Wheat
A 2023 study achieved 98.3% precision on aphid identification using a hybrid Vision Transformer-CNN model. The system processed 5-megapixel images at 23 FPS on an NVIDIA Jetson AGX, demonstrating real-time field applicability. Key innovations included:
- Patch-based tokenization of 16×16 pixel regions
- Cross-attention between spectral bands
- Hard negative mining for rare pest stages
Thermal imaging further improved detection in occluded conditions by identifying metabolic heat signatures of insect colonies. The fusion of thermal and RGB features reduced false negatives by 41% compared to visual spectrum alone.

Machine Learning Models for Pest Classification
Convolutional Neural Networks (CNNs) for Image-Based Pest Detection
Convolutional Neural Networks (CNNs) dominate pest classification due to their hierarchical feature extraction capabilities. A typical CNN architecture for pest detection consists of multiple convolutional layers, each applying learned filters to detect spatial patterns. The first layers identify low-level features like edges and textures, while deeper layers recognize complex structures such as insect wings or body segments. Batch normalization and ReLU activation functions are commonly used to stabilize training and introduce non-linearity.
Here, θ represents the model parameters, N is the batch size, C is the number of pest classes, yi,c is the ground truth label, and f(xi;θ)c is the predicted probability for class c. The L2 regularization term λ||θ||22 prevents overfitting.
Attention Mechanisms and Transformers
Vision Transformers (ViTs) have shown promise in pest classification by capturing long-range dependencies in images. Unlike CNNs, ViTs divide the input image into fixed-size patches, linearly embed them, and process them through self-attention layers. The attention weights highlight regions containing pests, even when partially occluded. For agricultural applications, hybrid architectures combining CNNs with attention mechanisms often outperform pure architectures, as they leverage both local feature extraction and global context understanding.
Few-Shot Learning for Rare Pest Species
Collecting large labeled datasets for rare pests is impractical. Few-shot learning techniques, such as Prototypical Networks or Model-Agnostic Meta-Learning (MAML), enable accurate classification with minimal examples. These methods learn a metric space where samples from the same class cluster together, allowing classification of novel pests based on just a few support examples. The objective function for Prototypical Networks is:
where pc is the prototype (mean feature vector) for class c, and d is a distance metric (typically Euclidean).
Multimodal Fusion for Enhanced Accuracy
Advanced systems fuse visual data with environmental sensors (temperature, humidity) or spectral imaging (hyperspectral, thermal) to improve robustness. Early fusion concatenates raw inputs, while late fusion combines high-level features. A gated fusion mechanism dynamically weights modalities based on their predictive confidence:
where hi is the feature vector from modality i, and αi is its attention weight. This approach is particularly effective in differentiating visually similar pests that thrive under distinct environmental conditions.
Real-Time Deployment Considerations
Edge deployment on drones or IoT devices requires optimizing models for latency and power constraints. Techniques include:
- Quantization: Reducing weights from 32-bit floats to 8-bit integers with minimal accuracy loss
- Pruning: Removing insignificant neurons based on L1-norm or Taylor expansion importance scores
- Knowledge Distillation: Training compact student models to mimic larger teacher models
The trade-off between model size and accuracy is quantified by the Pareto frontier, where no single metric can improve without degrading another. Hardware-aware Neural Architecture Search (NAS) automates this optimization for specific deployment targets.

Data Requirements for Training AI Systems
Data Volume and Diversity
The performance of AI models in pest detection is heavily dependent on the volume and diversity of training data. For robust generalization, datasets must encompass variations in pest species, growth stages, environmental conditions, and imaging modalities. A minimum of 10,000 annotated images per pest class is recommended for deep learning models, though this varies with model complexity. Data diversity should account for:
- Different lighting conditions (dawn, noon, dusk, artificial light)
- Seasonal variations in pest appearance and crop foliage
- Multiple imaging perspectives (top-down, side-view, close-up)
- Regional differences in pest morphology and behavior
Annotation Quality and Granularity
Precision in annotation directly impacts model accuracy. Bounding boxes are insufficient for small or overlapping pests; pixel-level segmentation masks are preferred. The annotation process must adhere to:
- Taxonomic consistency (using standardized pest classification systems)
- Multi-stage labeling for pests with metamorphic life cycles
- Occlusion handling protocols for partially visible specimens
Inter-annotator agreement should exceed κ = 0.85 (Cohen's kappa) for reliable ground truth.
Spectral and Temporal Dimensions
Multispectral and time-series data significantly enhance detection capabilities. The optimal spectral bands for pest identification are:
where λoptimal depends on the pest's cuticular refractive index ncuticle. Temporal sampling must capture diurnal activity patterns, with a Nyquist rate derived from:
Data Augmentation Strategies
Synthetic data generation must preserve biophysical realism. Effective transformations include:
- Physically accurate light transport simulations for leaf-pest interactions
- Procedural generation of damage patterns using L-system models
- Adversarial training with generative models to cover rare edge cases
The augmentation pipeline should maintain the statistical properties of real-world pest distributions.
Validation and Test Set Design
Test sets must represent operational conditions through stratified sampling across:
- Geographic regions (minimum 5 distinct agroecological zones)
- Crop growth stages (from seedling to maturity)
- Weather conditions (rain, fog, high winds)
Performance metrics should include pest density estimation errors, computed as:
where d̂i is the predicted count and di is the true pest density per unit area.
2. Image Processing and Feature Extraction
Image Processing and Feature Extraction
Preprocessing for Agricultural Imagery
Raw agricultural images often suffer from uneven lighting, occlusions, and noise due to environmental conditions. Preprocessing is critical to enhance discriminative features while suppressing irrelevant variations. A standard pipeline includes:
- Illumination normalization: Homomorphic filtering separates multiplicative lighting effects from reflectance components using logarithmic operations and high-pass filtering in the frequency domain.
- Contrast enhancement: Adaptive histogram equalization (CLAHE) improves local contrast while preventing noise amplification.
- Denoising: Anisotropic diffusion filters preserve edges while removing Gaussian and salt-and-pepper noise.
where H(u,v) is a Butterworth high-pass filter in frequency domain, and I(x,y) is the original image.
Multi-Scale Feature Extraction
Pest detection requires analyzing features at multiple scales due to varying pest sizes and distances from the camera. A pyramid-based approach combines:
Texture Descriptors
Local Binary Patterns (LBP) with rotation invariance capture micro-texture patterns of pest bodies and damaged foliage:
where ROR(x,i) performs i bitwise rotations of the binary pattern.
Spectral Features
Gabor wavelets at multiple orientations and scales model directional texture patterns:
where x' = xcosθ + ysinθ and y' = -xsinθ + ycosθ.
Deep Feature Extraction
Convolutional Neural Networks (CNNs) automatically learn hierarchical representations through successive layers:
- Early layers detect edges and color blobs using Gabor-like filters
- Middle layers combine these into texture and part detectors
- Late layers assemble semantic pest components
Transfer learning with architectures like ResNet-50 demonstrates superior performance when fine-tuned on agricultural datasets. The feature extraction process can be formalized as:
where fl represents layer l with weights Wl.
Dimensionality Reduction
High-dimensional features require compression for efficient processing. Kernel Principal Component Analysis (kPCA) nonlinearly projects features while preserving class separability:
followed by eigendecomposition of the centered kernel matrix K̃ = HKH, where H = I - 1/n is the centering matrix.

Deep Learning Approaches (CNNs, R-CNNs)
Convolutional Neural Networks (CNNs) for Pest Detection
Convolutional Neural Networks (CNNs) excel in image-based pest detection due to their hierarchical feature extraction capabilities. A typical CNN architecture for this task consists of multiple convolutional layers followed by pooling and fully connected layers. The convolution operation applies learnable filters to the input image, capturing spatial hierarchies of features such as edges, textures, and pest-specific patterns. For an input image I of size H × W × C, the output feature map F of a convolutional layer with K filters of size f × f is computed as:
where W represents the filter weights, b the bias term, and (i,j) the spatial position in the output feature map. Pooling layers (typically max-pooling) reduce spatial dimensions while preserving important features, making the network invariant to small translations.
Region-Based CNNs (R-CNNs) for Localized Pest Detection
While standard CNNs classify entire images, R-CNN variants address the more challenging task of localizing and classifying pests within images. Faster R-CNN, a widely adopted architecture, consists of two main components:
- Region Proposal Network (RPN): Generates candidate bounding boxes (regions of interest) likely to contain pests.
- Detection Network: Classifies and refines these regions.
The RPN operates by sliding a small network over the convolutional feature map, predicting object bounds and objectness scores at each position. For k anchor boxes per location, the RPN outputs 4k coordinates (bounding box adjustments) and 2k scores (object vs. background). The loss function combines classification and regression terms:
where pi is the predicted probability of anchor i being an object, ti represents the predicted bounding box coordinates, and pi*, ti* are the ground truth values.
Practical Implementation Considerations
Effective pest detection models require careful attention to:
- Dataset Characteristics: Agricultural images often exhibit varying lighting conditions, occlusions, and scale variations. Data augmentation techniques like random rotations, flips, and color jittering improve model robustness.
- Model Architecture Choices: Lightweight backbones (e.g., MobileNet, EfficientNet) may be preferred for edge deployment, while larger models (e.g., ResNet, VGG) offer higher accuracy where computational resources permit.
- Evaluation Metrics: Beyond standard accuracy, metrics like mean Average Precision (mAP) and Intersection-over-Union (IoU) better capture performance for object detection tasks.
Recent advances incorporate attention mechanisms and transformer architectures to improve pest detection in complex agricultural scenes. These approaches learn to focus on relevant image regions while suppressing background noise, particularly beneficial for small pest detection.

2.3 Real-Time Detection Using Edge AI
Real-time pest detection in agriculture demands low-latency inference to enable immediate intervention. Traditional cloud-based AI systems introduce unacceptable delays due to network latency, making Edge AI the preferred solution. By deploying lightweight neural networks directly on edge devices (e.g., drones, IoT sensors, or agricultural robots), inference can occur locally without relying on cloud connectivity.
Optimizing Models for Edge Deployment
Edge devices have constrained computational resources, necessitating model optimization techniques such as quantization, pruning, and knowledge distillation. Quantization reduces precision from 32-bit floating-point to 8-bit integers, significantly decreasing memory usage and accelerating inference. Pruning removes redundant neurons or connections, while knowledge distillation transfers knowledge from a large teacher model to a compact student model.
For instance, a MobileNetV3 model quantized to INT8 achieves a 4× reduction in model size and 3× faster inference compared to its FP32 counterpart, making it ideal for edge deployment.
Hardware Accelerators for Edge AI
Specialized hardware like GPUs, TPUs, and FPGAs further enhance real-time performance. NVIDIA Jetson platforms integrate CUDA cores for parallel processing, while Google Coral Edge TPUs leverage matrix multiplication units for efficient tensor operations. FPGAs offer reconfigurable logic, enabling custom accelerators tailored to specific neural network architectures.
- NVIDIA Jetson AGX Orin: Delivers 275 TOPS for high-performance edge AI.
- Google Coral Edge TPU: Provides 4 TOPS at 2W power consumption.
- Intel OpenVINO: Optimizes models for Intel CPUs, GPUs, and VPUs.
Case Study: Drone-Based Pest Detection
A recent implementation used a YOLOv5s model deployed on a DJI Matrice 300 RTK drone with an onboard NVIDIA Jetson Xavier NX. The system achieved 25 FPS at 720p resolution, detecting pests like Helicoverpa armigera with 92% accuracy. Key optimizations included TensorRT for GPU acceleration and INT8 quantization.
Performance Metrics
| Metric | FP32 | INT8 |
|---|---|---|
| Inference Time (ms) | 45 | 15 |
| Model Size (MB) | 27 | 7 |
Challenges and Trade-offs
While Edge AI reduces latency, it introduces trade-offs in model accuracy and flexibility. Lower precision quantization may degrade detection performance for small or occluded pests. Additionally, edge devices require periodic model updates, necessitating efficient over-the-air (OTA) update mechanisms.
For example, an INT8-quantized model may experience a 3-5% mAP reduction compared to its FP32 counterpart, a trade-off often justified by the gains in speed and efficiency.

3. Integration with Drones and IoT Devices
Integration with Drones and IoT Devices
Sensor Fusion for Multimodal Pest Detection
Modern agricultural drones integrate hyperspectral cameras, LiDAR, and thermal imaging sensors to capture complementary data modalities. The fusion of these signals enhances pest detection robustness by compensating for individual sensor limitations. A Bayesian framework optimally combines observations:
where X represents the multimodal feature vector (spectral reflectance, canopy temperature, 3D structure). Drones flying at 50-100m altitude achieve sub-centimeter resolution when equipped with 20MP cameras and gimbal stabilization.
Edge Computing Architectures
Real-time processing demands require distributed computing across drones, IoT gateways, and cloud systems. NVIDIA Jetson modules deployed on drones execute lightweight CNN models like MobileNetV3, achieving 23 FPS inference on 8W power budgets. The computational pipeline follows:
- Onboard preprocessing (radiometric calibration, NDVI calculation)
- Model inference with TensorRT optimization
- Geotagged result transmission via LoRaWAN (15km range)
Field tests show 92% recall for Helicoverpa armigera detection when combining 560nm spectral band analysis with spatial CNN features.
Swarm Coordination Algorithms
Fleet optimization uses modified Voronoi tessellation to maximize area coverage while minimizing energy consumption. Each drone i adjusts its trajectory based on:
where φ is a repulsive potential function and U represents the pest probability field. This approach reduces coverage redundancy by 37% compared to lawnmower patterns.
IoT Ground Verification
Soil-mounted sensors validate aerial detections through:
- Acoustic monitoring of chewing frequencies (1-8kHz range)
- Pheromone trap RFID counters
- Leaf wetness sensors for disease risk modeling
Data assimilation occurs through Kalman filtering, with field trials demonstrating a 15% improvement in false positive rates when combining drone and ground sensor inputs.

3.2 Field Deployment Challenges and Solutions
Environmental Variability and Robust Model Adaptation
Field conditions introduce dynamic environmental factors—lighting changes, occlusions, and weather variations—that degrade model performance trained in controlled settings. To mitigate this, domain adaptation techniques such as adversarial training align feature distributions between source (lab) and target (field) domains. The minimax objective for a domain-adversarial neural network (DANN) is:
where θf, θy, and θd are feature extractor, classifier, and domain discriminator parameters, respectively. λ controls adaptation strength.
Real-Time Processing Constraints
Edge deployment demands low-latency inference under hardware limitations. Quantization-aware training (QAT) reduces model precision to 8-bit integers without significant accuracy loss. For a layer with weights W, QAT applies:
where b is the bit-width. Pruning further compresses models by removing redundant filters via iterative magnitude-based criteria.
Data Scarcity in Uncontrolled Settings
Limited labeled field data necessitates semi-supervised learning. FixMatch combines consistency regularization and pseudo-labeling:
- Weakly-augmented images generate pseudo-labels for strongly-augmented versions.
- Only predictions with confidence > τ are retained, minimizing noise propagation.
Hardware Durability and Energy Efficiency
Solar-powered embedded systems (e.g., NVIDIA Jetson AGX Orin) must balance compute and energy budgets. Duty cycling optimizes active/sleep intervals using reinforcement learning. The policy π maximizes:
where R(st, at) rewards accurate detections while penalizing energy use.
Case Study: UAV-Based Pest Monitoring
A 2023 deployment in Brazilian soybean fields achieved 89% accuracy by combining:
- Multi-spectral imaging to distinguish pests from soil artifacts.
- Federated learning across farms to improve generalization without sharing raw data.
- On-drone model updates via LoRaWAN to adapt to emerging pest species.
Calibration for Sensor Degradation
Continuous exposure to dust and humidity alters camera responses. Online histogram matching adjusts incoming images It to a reference Iref by minimizing:
where CDFk is the cumulative distribution function for color channel k.

4. Data Privacy and Farmer Consent
4.1 Data Privacy and Farmer Consent
Agricultural AI systems, particularly those deployed for pest detection, rely heavily on high-resolution imagery and sensor data collected from farms. This data often includes geospatial coordinates, crop health metrics, and farm management practices, raising critical concerns about data ownership, privacy, and informed consent. Advanced implementations must address these concerns through cryptographic, legal, and ethical frameworks.
Data Anonymization Techniques
Raw agricultural datasets can inadvertently reveal sensitive information, such as farm location, crop yields, and operational practices. Differential privacy mechanisms can be applied to perturb data while preserving its utility for machine learning. For a dataset D, a randomized algorithm M satisfies (ε, δ)-differential privacy if, for all subsets S of the output space and all neighboring datasets D and D' differing by one record:
Where ε controls the privacy budget and δ accounts for a small probability of failure. In practice, this involves adding calibrated noise to geospatial coordinates or aggregating data at a regional level to prevent re-identification.
Farmer Consent Protocols
Consent must be explicit, informed, and revocable. Blockchain-based smart contracts offer a decentralized solution, enabling farmers to define granular permissions for data usage. A consent record C can be formalized as a tuple:
Where F is the farmer’s identity, D is the data scope, U specifies permissible uses (e.g., research, commercial), T is the expiration time, and σ is a cryptographic signature. Zero-knowledge proofs (ZKPs) can verify consent without exposing sensitive details:
Secure Multi-Party Computation (SMPC)
When multiple stakeholders (e.g., agronomists, insurers, researchers) require access to pest detection data, SMPC allows collaborative analysis without exposing raw data. Consider n parties holding private inputs x1, ..., xn. A function f is computed such that:
While ensuring no party learns anything beyond y. For pest detection, this enables aggregated insights (e.g., regional infestation trends) while preserving individual farm confidentiality.
Regulatory Compliance
GDPR and the Agricultural Data Act impose strict requirements on data processing. AI systems must implement:
- Right to Erasure: Automated pipelines to delete farmer data upon request.
- Data Minimization: Collect only essential features (e.g., spectral indices instead of full RGB images).
- Audit Trails: Immutable logs of data access and usage, verifiable via Merkle trees.
Emerging standards like IEEE P2874 (Agricultural IoT Data Privacy) provide technical guidelines for implementing these requirements in edge-AI systems.
4.2 Reducing Pesticide Use Through Precision AI
AI-Driven Pest Localization and Targeted Spraying
Traditional pesticide application methods rely on uniform spraying, leading to excessive chemical use and environmental contamination. Precision AI mitigates this by leveraging computer vision and deep learning to localize pests with sub-centimeter accuracy. Convolutional Neural Networks (CNNs) trained on multispectral imagery can distinguish between healthy crops, pest-infested regions, and benign insects, enabling targeted spraying. The key innovation lies in the real-time processing pipeline:
where I(x,y) represents the pixel intensity at coordinates (x,y) in a hyperspectral image, and τ is a confidence threshold optimized via reinforcement learning to minimize false positives.
Dynamic Treatment Optimization
Multi-armed bandit algorithms adapt spraying strategies based on pest population dynamics. Each "arm" represents a candidate treatment (e.g., neonicotinoid dosage, biological agent), with rewards defined as pest mortality minus environmental impact. The Thompson sampling approach balances exploration-exploitation:
Field trials in California almond orchards demonstrated 62% pesticide reduction while maintaining 98% pest control efficacy compared to conventional methods.
Edge-Deployed AI for Real-Time Decision Making
Latency constraints necessitate lightweight models deployable on agricultural drones. Knowledge distillation techniques compress ResNet-50 pest detectors into MobileNetV3 architectures with minimal accuracy loss:
where z_t and z_s are logits from teacher and student networks respectively, and T is the temperature parameter. Quantized models achieve 23 FPS inference on NVIDIA Jetson AGX Orin with 8-bit integer precision.
Case Study: Aphid Control in Wheat Fields
A German study deployed YOLOv7-trained drones with micronozzle sprayers, achieving:
- 89% reduction in imidacloprid usage
- 40% decrease in non-target insect mortality
- €18/hectare cost savings from reduced chemical purchases
The system used SWIR (1450nm) imaging to detect aphid honeydew secretions, with detection confirmed by ground-truth PCR analysis of leaf samples.

Sustainability Impact of AI-Driven Pest Control
The integration of AI-driven pest detection systems in agriculture has profound implications for sustainability, primarily through reductions in chemical usage, optimized resource allocation, and minimized ecological disruption. By leveraging computer vision and machine learning, these systems enable precision targeting of pesticide applications, reducing over-reliance on broad-spectrum chemicals that harm non-target species and degrade soil health.
Quantifying Chemical Reduction
The environmental benefit can be modeled by comparing traditional blanket spraying versus AI-targeted applications. Let N be the total area of a field, ρ the pest density (pests per unit area), and α the proportion of the field requiring treatment. The chemical savings S is given by:
where C0 is the chemical dose per unit area. Field studies show AI systems achieve α values between 0.15–0.3 for common pests like Helicoverpa armigera, translating to 70–85% reductions in chemical use.
Energy Efficiency and Carbon Footprint
While AI systems require computational resources, their net energy impact is favorable when considering avoided emissions from pesticide manufacturing and application. The carbon trade-off can be expressed as:
where EAI is the energy cost of running detection models (typically 0.5–2 kWh/ha for edge devices), while Echem (15–30 kWh/ha) and Eapp (3–5 kWh/ha) represent pesticide production and mechanical spraying. Lifecycle analyses show net savings of 12–22 kg CO2 equivalent per hectare.
Biodiversity Preservation
Conventional pesticides reduce beneficial insect populations by 40–60% in treated areas. AI-driven precision preserves pollinators and natural pest predators through:
- Spatiotemporal avoidance of flowering zones during pollination periods
- Exclusion buffers around predator habitats identified via semantic segmentation
- Dynamic thresholding that tolerates low pest levels where natural predation is active
Neural network architectures like Mask R-CNN enable these refinements by simultaneously detecting pests, host plants, and non-target organisms with >90% mean average precision in controlled trials.
Water Quality Improvement
Reduced chemical runoff directly improves aquatic ecosystem health. The contaminant load L reaching waterways follows:
where k is a terrain-dependent runoff coefficient, Ci the application rate in zone i, Ai the area, and Ri the retention factor. AI optimization minimizes L by strategically allocating treatments away from hydrological flow paths identified through LiDAR terrain analysis.
Long-Term Soil Health
Repeated broad-spectrum pesticide use degrades soil microbiota critical for nutrient cycling. AI systems preserve microbial diversity by:
- Rotating chemical classes based on pest resistance monitoring
- Integrating with soil sensor networks to avoid applications during vulnerable microbial growth phases
- Prioritizing biological controls when soil organic matter falls below thresholds
Multi-agent reinforcement learning systems have demonstrated 30–50% improvements in soil enzyme activity compared to calendar-based spraying regimes in 3-year longitudinal studies.

5. Key Research Papers on AI in Agriculture
5.1 Key Research Papers on AI in Agriculture
- Unravelling the use of artificial intelligence in management of insect ... — For effective implementation of the AI technology, the domain of pest management in agriculture and forestry has emerged as a promising arena, offering novel solutions that are more efficient, precise and environmentally sustainable [8].Due to quick development of Artificial Intelligence in science, the AI-related theories and technology like Smart Pest Monitoring (SPM) became a novel ...
- PDF Using Image Processing and Computational Intelligence to Detect Pest at ... — Keywords: Pest Detection, Image Processing, Feature Extraction, Grey Scaling I. INTRODUCTION India is a nation that relies heavily on agriculture. Agriculture is the primary source of income for 70% of the population. Increasing agricultural yield is thus a crucial issue at the moment. The majority of scientists are working in this sector.
- Overview of Pest Detection and Recognition Algorithms - MDPI — Detecting and recognizing pests are paramount for ensuring the healthy growth of crops, maintaining ecological balance, and enhancing food production. With the advancement of artificial intelligence technologies, traditional pest detection and recognition algorithms based on manually selected pest features have gradually been substituted by deep learning-based algorithms. In this review paper ...
- An intellectual model of pest detection and classification using ... — 3.1 Pest detection and classification: developed model 3.1.1 Challenges on the developed model. Excessive pesticide use, growing populations, use modifications, reliance on the internet, and misuse of renewable resources clear the pathway for an emerging agricultural era whereby electronic instruments are used to maximize energy usage and boost productivity in agriculture.
- A high performance-oriented AI-enabled IoT-based pest detection system ... — These variables must be carefully studied to make AI in agriculture fair, sustainable, and valuable to all stakeholders. Despite these challenges, AI in agriculture can potentially increase agricultural output through resource efficiency, disease and pest prediction, irrigation optimization, and customized crop management [5]. AI can provide ...
- (PDF) Automation and AI in Precision Agriculture: Innovations for ... — The study offers an in-depth look at the most recent developments in artificial intelligence (AI) and automation in precision agriculture (PA), with a particular emphasis on important technologies ...
- Smart Farming (Ai-Generated) as an Approach to Better Control Pest and ... — Findings-Study results indicated that acceptance of the main hypothesis that argued, "Smart Farming Agriculture has an effect on Control Pest and Disease Detection". Results indicated an R-value ...
- A Novel Deep Learning Model for Accurate Pest Detection and Edge ... — Here, p t represents the probability predicted by the model and γ is a hyperparameter to control the degree of attention that the loss function pays to simple and hard samples. 2.2. EfficientDet. EfficientDet is a multi-scale feature fusion object detection model based on EfficientNet. Its innovation lies in the introduction of a new network structure, Compound Scaling, for simultaneously ...
- Leveraging deep learning for plant disease and pest detection: a ... — This has a lot of potential. Despite rapid advances in plant and pest disease detection technology, it has moved from academic research to agricultural application. The mature application still requires a great deal of work, and several issues must be resolved before it can be used in the real world. 9.1 Plant diseases and pests detection dataset
- AI-IoT based smart agriculture pivot for plant diseases detection and ... — There are some key problems faced in modern agriculture that IoT-based smart farming. These problems such shortage of water, plant diseases, and pest attacks. Thus, artificial intelligence (AI ...
5.2 Open Datasets for Pest Detection
- Overview of Pest Detection and Recognition Algorithms - MDPI — Due to the complexity of collecting pest images, many researchers, aside from those specifically investigating pests on certain crops, use public datasets such as the IP102 dataset and the D0 dataset , which are used for both pest detection and pest recognition, and the Pest24 dataset for pest detection. The D0 dataset is a pest dataset ...
- An Efficient Pest Detection Framework with a Medium-Scale Benchmark to ... — To validate the model performance, we develop a medium-scale pest detection dataset that includes the five most harmful pests for agriculture products that are ants, grasshopper, palm weevils, shield bugs, and wasps. ... , proposed an AI mobile-based model for the detection of pests in the agriculture fields using a custom dataset. They focused ...
- A high performance-oriented AI-enabled IoT-based pest detection system ... — This allows the detection of even tiny pests across a wide variety of scales and does it at all places and levels of the pyramid. Authors tested on a large-scale small pest dataset that was only recently developed by their team for tiny pest detection. This dataset has 27.8 thousand photos of 145.6 thousand manually identified pests.
- Leveraging deep learning for plant disease and pest detection: a ... — Small data sets will also be enriched by GAN (Nazki et al., 2020) and Automatic Variational Encoder (VAE) (Zilvan et al., 2019). Emerging datasets, including synthetic data generated through GANs, play a pivotal role in addressing data scarcity and improving the robustness of deep learning models for plant disease and pest detection.
- Review on Pest Detection and Classification in Agricultural ... — Several datasets available for pest detection and classification can be used for developing and testing machine learning algorithms and models. Here are some of the examples. 2.1 Plant Village. Plant Village is a dataset of over 50 000 images of plants with various diseases, including pests.
- PDF Pest Identification and Control in Smart Agriculture Using Wireless ... — crucial for accurate pest identification. 4. Pest Detection: Once the image is captured, the system automatically initiates the pest detection process. This likely involves sending the image to an image recognition model, potentially a convolutional neural network (CNN) model specifically trained on a extensive dataset of pest images. The model
- AI-Driven Pest and Disease Detection for Sustainable Agriculture — AI-Driven Pest and Disease Detection for Sustainable Agriculture. ... open-access agricultural datasets, and regulatory frameworks that. ... encompassing 906 relevant studies from five electronic ...
- An AIoT Based Smart Agricultural System for Pests Detection — In this study, artificial intelligence and image recognition technologies are combined with environmental sensors and the Internet of Things (IoT) for pest identification. Real-time agricultural meteorology and pest identification systems on mobile applications are evaluated based on intelligent pest identification and environmental IoT data. We combined the current mature AIoT technology and ...
- AgriPest: A Large-Scale Domain-Specific Benchmark Dataset for ... - MDPI — Object detection is a classic research topic in the computer vision communities. The current large volume of standardized object detection datasets [1,2,3] help to explore many key research challenges that are related to object detection and evaluate the performance of different algorithms and technologies.Especially, the recent popularity and development of deep learning techniques has proved ...
- (PDF) Agricultural Pest Detection Methods and Control Measures ... — PEST24 dataset and the existing small tar get detection methods for small pests and la rge pest targets, the comparison results ar e shown in T able 3. The comparison of the methods includes the ...
5.3 Tools and Frameworks for Implementation
- Unravelling the use of artificial intelligence in management of insect ... — For effective implementation of the AI technology, the domain of pest management in agriculture and forestry has emerged as a promising arena, offering novel solutions that are more efficient, precise and environmentally sustainable [8].Due to quick development of Artificial Intelligence in science, the AI-related theories and technology like Smart Pest Monitoring (SPM) became a novel ...
- A high performance-oriented AI-enabled IoT-based pest detection system ... — Arnesen and Rosell [35] proposed that pest detection dogs from canines' lupus families can identify these insects earlier. To study the potential of dogs as detection tools, authors trained two private dogs. The investigations were carried out in one of 3 separate search settings using randomly selected methodologies.
- A Novel Crop Pest Detection Model Based on YOLOv5 - MDPI — The damage caused by pests to crops results in reduced crop yield and compromised quality. Accurate and timely pest detection plays a crucial role in helping farmers to defend against and control pests. In this paper, a novel crop pest detection model named YOLOv5s-pest is proposed. Firstly, we design a hybrid spatial pyramid pooling fast (HSPPF) module, which enhances the model's capability ...
- An Efficient Pest Detection Framework with a Medium-Scale Benchmark to ... — In addition, their method is deployed on a mobile application for public use, which early detects the RPW based on their movement. Hu et al. , used a near-infrared imaging technology-based method and YOLOv5 for the accurate classification and detection of the pest in the agriculture fields. They obtained promising performance which was 99.7% of ...
- CCMT: Dataset for crop pest and disease detection - PMC — The objective of AI in agriculture is to control crop pests/diseases, reduce cost, and improve crop yield. In developing countries, the agriculture sector faces numerous challenges in the form of knowledge gap between farmers and technology, disease and pest infestation, lack of storage facilities, among others.
- PDF Using Image Processing and Computational Intelligence to Detect Pest at ... — Keywords: Pest Detection, Image Processing, Feature Extraction, Grey Scaling I. INTRODUCTION India is a nation that relies heavily on agriculture. Agriculture is the primary source of income for 70% of the population. Increasing agricultural yield is thus a crucial issue at the moment. The majority of scientists are working in this sector.
- An Efficient Pest Detection Framework with a Medium-Scale Benchmark to ... — Chen et al. , proposed an AI mobile-based model for the detection of pests in the agriculture fields using a custom dataset. They focused on different types of pretrained deep learning (DL) models named faster region-based convolutional neural networks (R-CNNs), single-shot detectors (SSDs), and YOLOv4 for correct identification.
- Crop pest detection by three-scale convolutional neural network with ... — 2. Related work. Convolutional neural network (CNN) has become dominant in various computer vision tasks, has great advantages in complex image segmentation and feature extraction, is superior to the traditional machine learning algorithms in image detection and recognition [12-15], and has been applied to precision agriculture [16,17].CNN can adjust the weight parameters by itself according ...
- An effective pest detection method with automatic data augmentation ... — Currently, computer vision technology has been applied to detect and recognize pests for integrated pest management (IPM). Recent studies have shown that the accuracy of pest detection and recognition has been rapidly improved with the development of deep learning. However, complex backgrounds, various poses, and different scales among insect species in the field will aggravate the difficulty ...
- A new mobile application of agricultural pests recognition using deep ... — Agricultural pests cause between 20 and 40 percent loss of global crop production every year as reported by the Food and Agriculture Organization (FAO).








