Key Takeaways
- Bandwidth and link limits, not privacy, are why camera and drone inference moves on-device: a continuous 4K stream costs more in transport and storage than the chip that processes it locally.
- Video analytics is shifting from fixed-class detection toward open-vocabulary VLM search β describing an event in plain language instead of matching a pre-trained class list.
- Camera silicon: Hailo-10H and Hailo-15 target sub-5W in-camera GenAI; Ambarella's N-series (launched CES 2026) adds an 8K edge AI vision SoC with multi-sensor perception.
- Edge appliances (NVIDIA Jetson Orin/Thor) aggregate many camera feeds on-premise; Jetson Thor supports up to 32 MIPI CSI-2 camera inputs in one box.
- Drones run compute on the airframe: Qualcomm QRB5165 via ModalAI VOXL 2 combines autopilot, GPS-denied visual-inertial odometry, and inference in an ~16 g package.
- Most real deployments are hybrid β a lightweight fixed-class detector runs continuously; the VLM only processes triggered clips, not every frame.
- A VLM does not replace fixed-class detection β it adds open-vocabulary search on top of a detector that still does the continuous, per-frame triage work.
Why Does Video AI Move to the Edge Before Privacy Ever Comes Up?
Bandwidth and physical link limits are the primary reason camera and drone inference moves on-device β the economic argument arrives before the privacy argument does. A 4K camera streaming continuously at 15β30 fps generates a sustained bitrate that, multiplied across a multi-camera site and a 30-day retention window, accumulates transport and storage cost faster than the one-time cost of an in-camera or edge-appliance accelerator. The calculator further down this page lets you run that math for your own camera count and retention window.
Drones face the same constraint from the opposite direction: instead of too much data to move cheaply, they have too little reliable link to depend on. A drone at operational range has an intermittent, low-bandwidth, and sometimes contested radio link β a mission that depends on a live cloud connection to interpret what the drone sees stops working exactly when the aircraft needs to act autonomously, such as during GPS jamming or beyond visual line of sight.
This is a different framing from the privacy-first argument this site's existing local-LLM content tends to use for consumer and desktop AI. For cameras and drones, the buyer's first question is "can I afford to move this much video, and can I count on the link staying up" β privacy and data residency are real secondary benefits, not the reason the architecture exists.
π In One Sentence
Video AI moves on-device because transport and storage costs, and unreliable radio links, make cloud-dependent inference impractical before privacy is even a factor.
π¬ In Plain Terms
Moving every camera's video to a server costs money and needs a link that stays connected; processing it where it is captured avoids both problems.
Should You Run Inference In-Camera, on an Edge Appliance, or in the Cloud?
Three architectures handle camera video AI today, and most production deployments combine at least two of them. The right choice depends on camera count per site, retention requirements, and how much per-unit cost the hardware budget can absorb.
In-camera inference embeds the accelerator inside the camera itself β Hailo-10H and Hailo-15 target this design point at sub-5W power draw. Use this when each camera needs to make its own decision (motion-triggered recording, on-device tamper detection) and the camera's bill-of-materials can absorb one chip per unit.
On-premise edge appliance aggregates many camera feeds into one box running NVIDIA Jetson Orin or Jetson Thor. Use this when a site has more cameras than it makes sense to instrument individually β Jetson Thor's support for up to 32 MIPI CSI-2 camera inputs is a strong signal this platform is meant for exactly this multi-camera aggregation role, not single-stream inference.
Cloud processing still fits low-camera-count sites with no real-time requirement, where full-archive retroactive search across months of footage matters more than per-clip latency and where the bandwidth cost of a handful of streams is acceptable.
In practice, most deployments described later in this article are hybrid: fixed-class detection runs continuously in-camera or on the edge appliance, cloud storage holds an archive for retroactive search, and VLM inference runs only against clips a lower-cost detector already flagged.
How Is Video Analytics Shifting from Detection to Description?
Video analytics is moving from fixed-class object detection toward open-vocabulary VLM search β the most recent shift in this market. A fixed-class detector answers "is there a person, vehicle, or one of roughly 80 pre-trained COCO categories in this frame?" An open-vocabulary VLM answers a described query β "find the clip where someone left a bag near the loading dock" β against footage the fixed-class detector was never trained to recognize as a category.
A VLM does not replace the fixed-class detector β it works on top of it. A vision-language model will not run at 30 frames per second per stream inside a sub-5W camera power budget; the compute and latency cost of full VLM inference is too high for continuous, every-frame processing at that power envelope. Instead, the fixed-class detector keeps doing the continuous, low-power triage work β motion, presence, basic classification β and only the clips it flags get passed to the VLM for open-vocabulary description or search.
This two-tier design is why in-camera silicon like Hailo-10H is described as a "GenAI at the edge" accelerator rather than a full VLM-at-every-frame processor: the chip is sized for triggered, intermittent VLM inference on top of continuous lightweight detection, not for running a vision-language model at full frame rate.
π In One Sentence
Open-vocabulary VLM search finds a described event in footage a fixed-class detector was never trained to recognize as a category, but it runs on triggered clips, not every frame.
π¬ In Plain Terms
The old way: "flag anything that matches person/car/dog." The new way: "find the clip where someone left a bag by the dock" β in your own words, after a cheaper detector has already flagged the clip.
- Fixed-class detection: continuous, low-power, answers "is this one of N pre-trained categories?"
- Open-vocabulary VLM search: triggered, higher-power, answers a natural-language description against a specific clip
- The two are additive, not competing β the detector decides what to show the VLM, not the other way around
- Desktop and server-class VLM setups (LLaVA, Qwen3-VL, and similar models) share the same model families used for this triggered clip-level analysis β see the desktop VLM comparison below before evaluating an embedded deployment
How Much Bandwidth and Storage Does Your Camera Site Actually Need?
Enter your camera count, resolution, frame rate, and retention window below to estimate continuous bandwidth and storage cost. Use this before choosing between in-camera, edge-appliance, or cloud architectures β the number that comes out usually settles the argument on its own.
Estimated bandwidth & storage
Continuous bandwidth (all streams): 128 Mbps
Storage for the retention window: 41.5 TB
Estimates from typical H.264 surveillance-quality bitrates, scaled linearly with frame rate. Actual bitrate varies with scene complexity and codec.
How Do You Evaluate a Camera or Drone VLM Deployment?
Six checks separate a deployment that works from one that fails in the field. Run them in this order before committing to a specific silicon platform.
- 1Define the trigger, not the stream
Why it matters: Decide what event triggers VLM inference (motion, a fixed-class detector alarm, a scheduled interval) before choosing hardware β running a VLM against every frame of every stream is not a power or cost budget that exists in 2026. - 2Measure the link budget before choosing silicon
Why it matters: For drones, measure available uplink bandwidth and worst-case latency at operational range before selecting a compute platform β the airframe's radio link, not the compute chip, is usually the binding constraint. - 3Keep detection and description as separate stages
Why it matters: Run a lightweight fixed-class detector continuously and route only flagged clips to the VLM β this is the only way to fit VLM inference inside a camera or drone power budget. - 4Match power budget to the physical enclosure
Why it matters: A fanless camera housing caps thermal budget around 5W; a drone payload is capped by weight and flight-time trade-offs, not power draw alone β size the silicon to the enclosure, not the other way around. - 5Validate GPS-denied operation if the mission can lose GPS or the command link
Why it matters: Visual-inertial odometry (VIO) needs to be tested specifically, not assumed to work, before relying on it beyond visual line of sight or in contested electromagnetic environments. - 6Pilot on one site or one airframe before scaling
Why it matters: Validate false-positive rate, query latency, and battery/thermal behavior on a single deployment before committing budget to a fleet-wide rollout.
Why Do Drones Process Video Onboard Instead of Streaming It?
Drones move compute onto the airframe for three reasons: link margin, latency, and GPS-denied navigation β not because onboard compute is cheaper. A drone's radio link degrades with range, terrain, and interference in ways a fixed camera's ethernet cable never does; a mission that depends on a continuous cloud connection to interpret video fails exactly when the aircraft is furthest from its operator and needs autonomy most.
ModalAI's VOXL 2, built around the Qualcomm QRB5165, is the reference platform for compute-on-airframe design. It is PX4-compatible, supports GPS-denied visual-inertial odometry (VIO) for navigation when satellite positioning is unavailable or jammed, and packages autopilot, compute, and navigation sensors into an autopilot-class module of roughly 16 grams β small enough that it competes with payload and battery for the same weight budget, not with a separate power supply.
Weight and power are hard constraints on an airframe in a way they are not for a camera bolted to a wall. Every gram of onboard compute is a gram not available for battery capacity, sensor payload, or flight endurance β a drone platform cannot simply add a rack unit the way an on-premise camera site can add an edge appliance.
- Link margin: radio connectivity degrades with range, terrain, and contested spectrum in ways wired camera infrastructure does not
- Latency: a live decision (obstacle avoidance, target tracking) cannot wait on a round-trip to a cloud server
- GPS-denied navigation: visual-inertial odometry lets the aircraft maintain position and heading when satellite positioning is unavailable
- Weight budget: an autopilot-class compute module in the ~16 g class trades directly against battery and payload, unlike a stationary camera's enclosure
Where Are Camera and Drone VLMs Already Used Commercially?
Four commercial categories account for most shipping deployments today: infrastructure and utility inspection, precision agriculture, survey and mapping, and public safety.
- Infrastructure and utility inspection: drones fitted with onboard compute inspect transmission lines, pipelines, and cell towers, flagging visible defects without streaming raw footage back for review
- Precision agriculture: onboard vision distinguishes crop stress, weed pressure, and irrigation issues per-field, feeding decisions back to farm management systems without a continuous cloud link over rural areas with weak connectivity
- Survey and mapping: photogrammetry and inspection drones process imagery onboard or at an edge appliance to reduce the volume of raw data that needs to be transported and stored per flight
- Public safety: fixed camera networks combine continuous fixed-class detection with triggered VLM search β for example, retrieving a described incident from an archive instead of manually reviewing hours of footage
πNote: Military programs are also shaping this silicon market. Shield AI's Hivemind autonomy software was selected for the US Air Force's YFQ-44A Collaborative Combat Aircraft (CCA) program, and Anduril's Lattice software has been tested on the same airframe. This program-level demand for autonomy stacks is one driver behind investment in edge inference silicon, though the certification path, buyer, and requirements for defense programs are entirely different from the commercial deployments described above and are outside the scope of this guide.
Comparison: Compute Platforms for Cameras and Drones
Cross-reference the edge silicon guide for full Jetson Orin and Jetson Thor specifications β this table stays scoped to the camera- and drone-specific platforms most relevant to video analytics.
Platform | Power Budget | Best For | Status |
|---|---|---|---|
| Hailo-10H / Hailo-15 | <5W | In-camera GenAI, edge VLM triage | Shown at ISC West 2026 |
| Ambarella N-series | Edge AI vision SoC | 8K multi-sensor perception | Launched CES 2026 |
| NVIDIA Jetson Orin / Thor | 15β130W class | Multi-camera edge appliance | Thor: up to 32 MIPI cameras |
| Qualcomm QRB5165 (VOXL 2) | Drone-class module | Autopilot + VIO + inference | PX4-compatible, ~16 g |
What Hardware Do You Need to Get Started?
Four hardware categories cover most camera and drone VLM projects; check current retailer and distributor listings for pricing, since it changes frequently.
- Camera modules and developer kits: reference camera boards paired with an edge accelerator, used to prototype an in-camera pipeline before committing to a custom camera design
- Hailo M.2 accelerator modules: add sub-5W AI inference to an existing camera or embedded compute board over an M.2 slot, without redesigning the camera's main board
- Edge video appliances: NVIDIA Jetson Orin and Jetson Thor developer kits, used to prototype the multi-camera aggregation architecture described above before deploying a fleet of on-premise appliances
- Drone developer platforms: ModalAI VOXL 2 developer kits, used to prototype PX4-based autopilot and onboard-inference pipelines before integrating into a production airframe
What Doesn't Work On-Device Yet?
Three capabilities remain cloud-tier or research-stage as of 2026, and no camera- or drone-class accelerator changes that this year.
- Long-horizon video understanding: reasoning across a full multi-hour recording in one pass, rather than triggered clip-level analysis, still exceeds the memory and compute budget of edge accelerators
- Cross-camera re-identification at scale: tracking one described subject reliably across many camera feeds and sites remains a workload better suited to a centralized system with access to the full multi-camera archive
- Large context over hours of footage: an open-vocabulary query that needs to reason over an entire day's recording, rather than a specific flagged clip, still needs more context and compute than an edge accelerator's power budget supports
What Jurisdiction and Procurement Rules Apply?
US federal and federal-adjacent procurement restricts Chinese-origin drone hardware through NDAA provisions and the Blue UAS framework β a live commercial constraint, not just a capability question. A buyer's platform choice for any project touching federal, state, or critical-infrastructure procurement is constrained by country-of-origin rules on the airframe and its components, independent of what that hardware can technically do. Blue UAS is the Defense Innovation Unit's vetted list of drone platforms cleared for government use; a systems integrator selling into this market needs to confirm platform eligibility before specifying hardware, not after.
Frequently Asked Questions
Why do camera and drone AI systems run inference on-device instead of in the cloud?
Bandwidth and link limits, not privacy, are the primary reason. A continuous 4K camera stream costs more in transport and storage over its retention window than the accelerator that processes it locally, and a drone at operational range has an intermittent, sometimes contested radio link that a cloud dependency cannot tolerate.
What is the difference between fixed-class detection and open-vocabulary VLM search?
A fixed-class detector answers whether a frame contains one of a pre-trained set of categories (roughly 80 in a typical COCO-trained model). An open-vocabulary VLM answers a described query β for example, "find the clip where someone left a bag near the loading dock" β against content the fixed-class detector was never trained to recognize as a category.
Can a vision-language model run in real time on a sub-5W camera accelerator?
Not at full frame rate. A VLM will not run at 30 frames per second per stream inside a sub-5W power budget. In practice, a lightweight fixed-class detector runs continuously at low power, and only the clips it flags are passed to the VLM for open-vocabulary description β the VLM runs on triggered clips, not every frame.
What compute platform do commercial drones use for onboard AI?
ModalAI's VOXL 2, built around the Qualcomm QRB5165, is a widely used reference platform. It is PX4-compatible, supports GPS-denied visual-inertial odometry for navigation, and packages autopilot, compute, and navigation sensors into a module of roughly 16 grams.
How much bandwidth does a single 4K security camera actually need?
It depends on frame rate, scene complexity, and codec β use the bandwidth calculator on this page to estimate continuous bandwidth and storage cost for your specific camera count, resolution, frame rate, and retention window rather than relying on a single rule-of-thumb number.
Should I choose Hailo-10H or Ambarella's N-series for a new camera design?
They target overlapping but distinct positions: Hailo-10H and Hailo-15 focus on sub-5W in-camera GenAI inference, while Ambarella's N-series (launched CES 2026) is positioned as an 8K edge AI vision SoC with multi-sensor perception. The right choice depends on your camera's resolution target, power budget, and whether you need multi-sensor fusion in the same chip.
Why do drones need GPS-denied navigation, and how does VOXL 2 handle it?
GPS signals can be jammed, spoofed, or simply unavailable indoors or in contested environments. VOXL 2 supports visual-inertial odometry (VIO), which fuses camera and inertial sensor data to estimate position and heading without relying on satellite positioning.
Are Chinese-origin drones restricted in the US commercial and government market?
For US federal and federal-adjacent procurement, yes β NDAA provisions and the Blue UAS framework restrict Chinese-origin drone hardware from government use. This is a procurement and country-of-origin rule, separate from the hardware's technical capability, and it applies before a systems integrator specifies a platform for that market.
Do I need an edge appliance, or can each camera run inference on its own?
It depends on camera count per site. A handful of cameras can each run in-camera inference independently (Hailo-10H/15-class chips). A site with many cameras usually benefits from an on-premise edge appliance (NVIDIA Jetson Orin or Thor) that aggregates feeds centrally β Jetson Thor supports up to 32 MIPI CSI-2 camera inputs in one box, which is a strong signal of its intended multi-camera role.
What can't on-device VLMs do yet for video analytics?
Three capabilities remain cloud-tier or research-stage as of 2026: long-horizon reasoning across a full multi-hour recording in one pass, cross-camera re-identification of one subject at scale, and open-vocabulary queries that need context spanning an entire day's footage rather than a specific flagged clip.
