Update wiki/acoustic-drone-detection.md
6a2edf28b215 harrisonqian 2026-04-12 1 file
index 00309fd..8aa9cf4 100644
@@ -1,5 +1,26 @@
---
+first_captured: 2026-04-10
+sources:
+- sources/google-sheets-ideas.md
+status: raw
+tags:
+- hardware
+- defense
+- embedded
+- ml
+- audio
+title: acoustic drone detection
+type: idea
+updated: 2026-04-11
visibility: public
---
-test
\ No newline at end of file
+# acoustic drone detection
+
+audio scene classification running on microcontrollers (MCUs) — the core premise is detecting drones, aircraft, or wildlife by sound without requiring a networked computer. the motivating insight is that visual detection fails at night or in dense foliage, but acoustic signatures are reliable and can be processed entirely on cheap embedded hardware. defense applications include perimeter monitoring and early warning; conservation applications include detecting illegal poaching aircraft in wildlife reserves.
+
+the hard technical problem is running a capable ML model on constrained hardware — MCUs have kilobytes of RAM and no GPU. this pushes toward techniques like quantization, knowledge distillation, and TinyML frameworks (TensorFlow Lite Micro, Edge Impulse). the classification pipeline: raw audio → spectrogram features → lightweight CNN or RNN → class label. the drone-vs-background distinction requires good negative examples (wind, insects, vehicles) to avoid false positives, which makes dataset construction a meaningful research contribution. similar embedded ML challenges appear in [[predictive-maintenance-sensors|predictive maintenance sensors]] and [[eeg-artifact-rejection|EEG artifact rejection]].
+
+this sits at the intersection of the [[cluster-hardware-wearable|hardware and wearables]] cluster and serious ML research — it is not a typical web app, which is part of why it scores highly on the spreadsheet evaluation. the defense/conservation dual-use angle gives it real-world traction.
+
+related: [[agent-simulation|agent-based simulation]]
\ No newline at end of file