Systems Archive/AerialEye
Edge AI & Computer Vision2026Published on Hugging Face

AerialEye

YOLOv11-Nano Disaster Response & Aerial CV Model

HF Downloads
1,900+
Validation mAP@0.5
89.4%
Dataset Size
6,327 Images
Target Hardware
Google Coral TPU
01

System Interface & Telemetry Viewport

AerialEye Vision Feed
Live Detection
human 0.94
vehicle 0.91
sos 0.97
road_damage 0.86
6-class aerial & disaster detector
YOLOv11 · SAHI · ONNX · TFLite
02

System Narrative & Problem Statement

Standard computer vision models trained on horizontal ground datasets perform poorly on aerial drone perspectives due to extreme perspective distortion, dense object clustering, and sub-30px target scales. AerialEye was engineered specifically to solve high-altitude disaster detection.

Upgraded to YOLOv11-Nano for optimized feature extraction, the model integrates SAHI (Slicing Aided Hyper Inference) to dynamically tile high-resolution aerial frames into 640x640 overlapping patches during inference, preserving critical pixel density for distant survivors and structural damage.

The model is trained on a unified, curated dataset of 6,327 high-altitude frames across 6 critical disaster classes: human, sos, vehicle, flood, road_damage, and crack. It achieves 89.4% mAP@0.5 and is exported to PyTorch (.pt), ONNX, and INT8 quantized TFLite for accelerated inference on low-power Google Coral Edge TPUs. Published openly on Hugging Face Hub.

Engineering Objectives

Integrates SAHI dynamic tiling to inspect high-resolution aerial drone feeds in real time without downscaling artifacts.
Trained with rotation, mosaic, and perspective augmentations to ensure orientation-invariant aerial object recognition.
Quantized to INT8 precision, enabling 45+ FPS inference speeds on edge-deployed micro-TPUs and embedded drone companion computers.
Public model card and dataset repository hosted under kilanisainikhil/AerialEye on Hugging Face.
03

Key Engineering Highlights & Milestones

Benchmark 01

Published on Hugging Face Hub with 1,900+ downloads across weights and dataset

Benchmark 02

Curated unified dataset of 6,327 high-altitude aerial and disaster-response images

Benchmark 03

89.4% mAP@0.5 validation accuracy across 6 critical disaster classes

Benchmark 04

INT8 TFLite weight quantization tailored for low-power Google Coral Edge TPU hardware

04

System Architecture & Data Pipeline

Stage 01Aerial Ingestion Layer
High-Res Drone Stream
6,327 image training corpus
SAHI Slicing Engine
Dynamic 640x640 tile slicing
Stage 02Neural Backbone
YOLOv11-Nano Backbone
Feature pyramid extraction
6-Class Disaster Head
Human, SOS, Flood, Damage
Stage 03Edge Deployment
INT8 TFLite Quantizer
Google Coral TPU acceleration
Hugging Face Hub Registry
kilanisainikhil/AerialEye
05

Subsystem Technology Deep Dive & Implementation

6 Disaster Classes

Detects human, SOS markers, vehicles, flood zones, road breaches, and structural cracks in real-time.

SAHI Inference Slicing

Tiled sliding-window inference preserves fine pixel details for tiny objects viewed from high drone altitudes.

INT8 Quantization

Post-training INT8 quantization compressing model weights to run on low-power Google Coral Edge TPU hardware.

Hugging Face Hub

Open-access distribution of weights, ONNX pipelines, and training datasets for disaster relief researchers.

Implementation Code & Core Pipelines

Slicing Aided Hyper Inference (SAHI) runner dynamically processing high-resolution aerial frames.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from sahi import AutoDetectionModel from sahi.predict import get_sliced_prediction class AerialEyeSlicer: def __init__(self, model_path="kilanisainikhil/AerialEye"): self.detection_model = AutoDetectionModel.from_pretrained( model_type="yolov11", model_path=model_path, confidence_threshold=0.35, device="cuda:0" ) def predict_high_altitude_frame(self, image_path: str): # 640x640 sliding window slices with 20% overlap result = get_sliced_prediction( image_path, self.detection_model, slice_height=640, slice_width=640, overlap_height_ratio=0.2, overlap_width_ratio=0.2 ) return result.object_prediction_list

Engineering Challenges & Technical Breakthroughs

Sub-30px Target Detection from High-Altitude Perspectives

Problem / Bottleneck

Standard downsampling (e.g. resizing 4K drone video directly to 640x640) squashes distant humans and SOS markers into unidentifiable 4-pixel artifacts.

Engineering Solution

Integrated SAHI dynamic tile slicing to preserve original high-resolution pixel density across overlapping 640x640 windows, followed by unified non-maximum suppression (NMS).

Measured Impact

Boosted small-object detection accuracy by +35.2% mAP@0.5 over monolithic standard detection.

Real-Time Edge Inference on Low-Power Drone Companion Computers

Problem / Bottleneck

Full-precision float32 models exceed the compute and thermal limits of low-power drone payload hardware.

Engineering Solution

Engineered a calibrated post-training INT8 quantization pipeline exporting to Google Coral Edge TPU and TFLite runtimes.

Measured Impact

Delivers 45+ FPS real-time detection on low-power 2-watt Edge TPU co-processors.

Performance Benchmarks & Efficiency Gains

Metric / CriterionStandard BaselineOptimized SystemNet Improvement
Validation mAP@0.554.2% (Standard YOLO Ground)89.4% (AerialEye + SAHI)+35.2% mAP
Sub-30px Small Object Recall31.0%82.5%+51.5% Recall
Coral TPU FPS12 FPS (Float32 CPU)48.2 FPS (INT8 Edge TPU)4.0x Speedup
Community Hub Transfers0 (Private)1,900+ (Hugging Face)Global Impact
06

Verified GitHub Commits & Release History

Repository Target: mainVerified Clean Tree
release: YOLOv11-Nano weights with SAHI dynamic 640x640 tile slicing
8d1209a·Mar 2026
v1.1-hf
feat(dataset): curate unified 6,327 aerial disaster response corpus
6c44b91·Mar 2026
feat(quant): INT8 post-training quantization for Google Coral Edge TPU
4b11f30·Feb 2026
eval: achieve 89.4% mAP@0.5 validation baseline across 6 disaster classes
2a99e41·Feb 2026
07

Engineering Arsenal & Technologies

Computer VisionYOLOv11PyTorchONNXTFLiteGoogle Coral TPUHugging FaceDisaster Relief
Explore Next System

Sleep Health Biometrics & Analytics

Statistical Biometric Modeling & Lifestyle Sleep Health Analysis

View System