← Back

Icarus

Hyperspectral CNN for soil chemistry prediction

Use hyperspectral drones to predict soil chemistry instantly. This data determines what gets grown, contracted, and turned into industrial materials. The Icarus Model processes drone-captured spectral data to estimate soil composition and is deployed in Enotrium's pipeline to contract farms and optimize cash crop economics.

Drone + Hyperspectral Imaging (HSI) — Remote sensing & verification layer.

Eyes Down. Soil Analytes.

Autonomous hyperspectral remote sensing & AI verification layer for regenerative agriculture and national-security-grade feedstock assurance.

Core Capabilities

  • UAV/drone hyperspectral imaging (400–2500 nm, SWIR focus)
  • 3D DNN models for contaminant detection (microplastics, heavy metals, PFAS, glyphosate, etc.)
  • Phytoremediation mapping & soil health scoring
  • Real-time verification for traceable, contaminant-free bio-materials
  • Edge/offline deployment for austere environments
  • Direct integration with AIP0 (zk-secured provenance) and Bioverge (feedstock qualification)

See field_results/ for actual drone flight results with ground truth validation (79 samples, MD + DE pilots). Includes real vs predicted scatter plots for N, SOC, moisture, and confusion matrices.

Abstract

This pipeline converts raw spectral data into actionable soil intelligence.

Instead of sampling soil manually, we:

  • scan entire fields using UAV hyperspectral imaging
  • reconstruct chemical and biological properties from spectral signatures
  • generate maps that directly inform agricultural and industrial decisions
  • track seed residuals for phenotyping genomic data

The output is a layer over land use and input economics.

Soil chemistry determines crop yield and input costs. By predicting soil conditions at scale, we can contract farms based on expected output, optimize crop selection and downstream material properties, and control downstream material tensile strength.

System Architecture

┌──────────────────────────────┐
│   UAV Drone (HSI Sensor)     │
│ 400–2500 nm Spectral Capture │
└──────────────┬───────────────┘
               │
               ▼
┌──────────────────────────────┐
│ Hyperspectral Data Cube      │
│ (x, y, λ) ~ 200+ bands       │
└──────────────┬───────────────┘
               │
               ▼
┌──────────────────────────────┐
│ 3D CNN Model                 │
│ Spectral-Spatial Learning    │
└──────────────┬───────────────┘
               │
               ▼
┌──────────────────────────────┐
│ Soil Prediction Maps         │
│ - DNN: Nutrients (N, C)      │
│ - Contaminants (PFAS, MPs)   │
│ - Moisture / Structure       │
└──────────────┬───────────────┘
               │
               ▼
┌──────────────────────────────┐
│ Field-Level Decisions        │
│ - Land valuation             │
│ - Crop selection             │
│ - Remediation targeting      │
└──────────────────────────────┘

Theoretical Framework

Spectral Signatures of Soil Health Stages

Soil systems progress through distinct health stages characterized by shifting reflectance patterns across visible, near-infrared (NIR), and short-wave infrared (SWIR) bands. These transitions are particularly evident in regions affected by legacy agrochemicals, heavy metals, PFAs, glyphosate residues, and microbial imbalances.

HSI captures these stages through high-dimensional reflectance vectors, providing an indirect but reliable measure of chemical and biological activity. Research has demonstrated strong correlations between specific spectral features and soil contaminants, nutrient profiles, and ecological restoration potential.

Microplastics Detection

Microplastics (MPs, particles <5 mm) are among the fastest-growing and most insidious soil contaminants worldwide. They originate from plastic mulch degradation, biosolids application, tire wear, atmospheric deposition, and irrigation water. Once in soil they alter microbial communities, reduce water retention, impair root growth, and enter the food chain, directly threatening regenerative agriculture and long-term soil health.

Our 400–2500 nm hyperspectral pipeline is exceptionally well-suited for non-invasive MP detection from UAV platforms. While visible and near-infrared (VNIR, 400–1000 nm) can only provide limited discrimination, the short-wave infrared (SWIR, 1000–2500 nm) region captures the diagnostic overtone and combination absorption bands of synthetic polymers that are absent in natural soil matrices.

Mathematical Framework

The Hyperspectral Pixel

A single pixel in a hyperspectral image is not merely RGB values—it is a complete spectrum spanning hundreds of contiguous wavelength bands.

Pixel_HSI = [R_400, R_405, R_410, ..., R_2500]

Where R_λ denotes reflectance at wavelength λ (in nanometers). Our sensors capture 210 bands at 10 nm intervals, yielding a 210-dimensional vector per pixel.

Pixel_HSI = [0.14, 0.15, 0.05, 0.11, 0.18, 0.22, ..., 0.10]

3D Convolution Kernels

Traditional 2D convolutions process spatial neighborhoods only. Icarus employs 3D kernels that simultaneously convolve across spatial dimensions (height, width) and the spectral dimension. A 3 × 3 × 200 kernel captures local spatial texture while integrating 200 contiguous spectral bands.

Kernel visualization (3 × 3 spatial slice at band b):

K_all_b = [[w_0_0_b, w_0_1_b, w_0_2_b], [w_1_0_b, w_1_1_b, w_1_2_b], [w_2_0_b, w_2_1_b, w_2_2_b]]

Flattened kernel vector:

w = [w_0, w_1, w_2, ..., w_1799]^T

Dimensions: 3 × 3 × 200 = 1800 weights per kernel.

Convolution Operation

At each position (x, y, b) in the input cube, we extract a 3D patch and compute the dot product with our learned kernel:

z_x_y_b = sum_i=0^2 sum_j=0^2 sum_k=0^199 w_i_j_k * x_x+i_y+j_b+k + b

Feature Map Generation

a_l = ReLU(BN(W_l * a_l-1 + b_l))

Here * denotes 3D convolution, BN is batch normalization, and a_l is the activation of layer l.

Training Objective

C = sum_j=0^n_L-1 (a_j_L - y_j)^2

Mean squared error between predicted soil chemistry values and laboratory-validated ground truth from portable X-ray fluorescence (pXRF) spectroscopy.

Back-Propagation

dC/dw_i_j_k_l = dC/dz_l * dz_l/dw_i_j_k_l = delta_l * a_l-1_i_j_k
dC/db_l = delta_l = dC/dz_l
delta_l-1 = (W_l)^T * delta_l * sigma'(z_l-1)

Spectral Indices

NDVI — Normalized Difference Vegetation Index

Indexes density and health of vegetation. Healthy foliage strongly absorbs red light.

NDVI = (R NIR - R Red) / (R NIR + R Red)

NDWI — Normalized Difference Water Index

NDWI = (R_860 - R_1240) / (R_860 + R_1240)

Higher NDWI values indicate greater surface water content. It also serves as a proxy for electrical conductivity, contaminant transport potential, and redox-sensitive metal mobility.

Microplastics Detection

Our 400–2500 nm hyperspectral pipeline detects microplastics via SWIR absorption features. Common polymers exhibit distinct C–H, C–O, and C=O vibrational features:

Polyethylene (PE)

lambda_PE ≈ 1210 nm (C-H 2nd overtone), 1725-1760 nm (C-H 1st overtone)

Polypropylene (PP)

lambda_PP ≈ 1155-1200 nm, 1700-1735 nm

Real-Field Performance

From actual drone flights with pXRF + lab chemistry ground truth (79 samples, MD + DE pilots):

TargetRMSESites
Nitrogen0.700.29 %MD + DE
SOC0.760.39 %MD + DE
Moisture0.883.5 %MD + DE
Microplastics~0.50 F1DE

Preprocessing Pipeline

Preprocess(I) = N(R(S(I)))

where S performs dimension validation, R applies spatial resizing, and N implements spectral normalization:

I_norm(b) = (I(b) - mu_b) / (sigma_b + epsilon)

Convolution Operation

Each pixel in the HSI cube is treated as a high-dimensional reflectance vector r in R^B (typically B ≈ 200 bands). A 3D kernel K of size 3 × 3 × B is convolved across the cube:

f(i,j) = sum_m=-1^1 sum_n=-1^1 sum_b=1^B I(i+m, j+n, b) * K(m, n, b)

Spatial Dropout

For a feature map tensor F in R^(h × w × C):

F_drop(i,j,c) = F(i,j,c) * M_c where M_c ~ Bernoulli(p)

Summary and Open Request

UAV HSI data from varying flight conditions is volatile to work with, and reliance on multi-source datasets without perfectly standardized calibration certainly doesn't help. Nonetheless the strong empirical performance in simulation suggests a strong correlation worth scaling, indicating that integrating hyperspectral reflectance data into EnotriumAI provides essential insights into soil biology and chemistry for regenerative economics.

Future work should expand beyond single-drone HSI to incorporate the full spectrum of ground-truth signals identified in the whitepaper (portable XRF, soil microbiome sequencing, IoT sensor arrays). This multi-modal approach, combined with the CNN backbone and zero-knowledge proofs, could enable Enotrium's platform to deliver privacy-preserving, verifiable land valuation and supply-chain transparency at continental scale — turning degraded soil into a self-generating, data-rich economic asset.

References and Results