AI & Autonomy

Counting the Cost Without Seeing the Strike: Zero-Shot AI Models Bypass Satellite Imagery Blackouts to Map Impacted Infrastructure

New arXiv research maps conflict-zone building impacts without post-strike imagery using LLMs, Hopkinson-Cranz physics, and depth-augmented vision mod

Counting the Cost Without Seeing the Strike: Zero-Shot AI Models Bypass Satellite Imagery Blackouts to Map Impacted Infrastructure
A new arXiv preprint introduces a zero-shot framework that estimates conflict-zone building impacts using only archival maps and LLM-extracted weapon data — no post-strike satellite imagery required. The system pairs Hopkinson-Cranz blast-radius physics with adaptive 2D segmentation and depth-augmented Large Vision-Language Models to count exposed structures in both sparse and dense urban environments.

Main Story

One of the most persistent technical bottlenecks in conflict-zone humanitarian response is not a shortage of AI models — it is a shortage of data. Post-strike satellite imagery is frequently subject to commercial embargoes or operational blackouts in active theatres, and even when imagery is available, the scarcity of conflict-specific very-high-resolution (VHR) datasets hampers model performance. A new preprint published on arXiv (cs.CV, arXiv:2608.00119) proposes a fundamentally different approach: rather than waiting for post-strike imagery to arrive, the system works entirely from archival, pre-strike maps and open-source incident data.

The research reframes impacted building mapping as a zero-shot geometric projection task. The pipeline ingests geolocated incident reports — sourced from LiveUAMap, an open-data conflict-monitoring platform that aggregates incidents from news outlets, social media, and field reports across 30+ regional maps, and from ArcGIS coordinate datasets — and feeds incident text into Large Language Models (LLMs) to extract estimated weapon payload mass. That payload figure is then used as the sole physical input to a Hopkinson-Cranz cube-root scaling calculation to project a kinetic blast perimeter, expressed as R_base = Z × W^(1/3), where Z is the scaled distance coefficient and W is the TNT-equivalent charge mass in kilograms. The Hopkinson-Cranz law is a well-established empirical method in explosives engineering: it holds that identical explosives at identical scaled distances produce geometrically self-similar blast waves, allowing the damage radius to be estimated from yield alone.

With a blast perimeter defined on the pre-strike basemap, the problem reduces to counting buildings inside that zone — still without any post-strike imagery. Here the paper introduces two technical contributions.

The first is Adaptive Field-of-View (AFoV), a technique that dynamically adjusts the zoom level fed into a 2D segmentation model to eliminate resolution bias. The segmentation backbone used is SAMGeo — the open-source segment-geospatial Python package that extends Meta AI's Segment Anything Model (SAM) to georeferenced satellite and aerial imagery. SAMGeo supports automated mask generation and interactive segmentation using point coordinates, bounding boxes, and text prompts, and exports results in standard vector and raster geospatial formats. The AFoV innovation addresses a known limitation: at fixed zoom levels, dense urban rooftops are systematically under- or over-counted because the model's receptive field is not calibrated to the spatial density of the scene.

The second contribution is 2.5D pseudo-height depth maps. Depth estimation is applied to the optical basemap tiles to generate a pseudo-elevation layer, which is then combined with standard 2D segmentation masks. This augmented representation is passed to Large Vision-Language Models (LVLMs), enabling them to disambiguate overlapping, densely packed rooftops in congested urban centres — a scenario where flat 2D segmentation consistently degrades. The paper reports that depth-augmented LVLMs dramatically outperform traditional segmentation methods in high-density urban zones when evaluated on 2026 Middle East conflict data.

The combined system forms a hybrid paradigm: ultra-fast 2D segmentation via SAMGeo for rural or low-density zones where rooftop occlusion is minimal, and depth-augmented LVLM inference for dense urban environments where occlusion and rooftop overlap are severe. The pipeline requires no labelled post-strike imagery at inference time — only archival maps, open incident text, and a physics-based perimeter estimate.

The broader research context underlines why this matters. Existing approaches to building damage assessment in conflict zones have consistently struggled with three interrelated problems: reliance on expensive proprietary satellite imagery with limited wartime availability; the need for labelled training data that is rarely available in war-affected regions; and optical imagery that is regularly obstructed by cloud cover. Prior work on the Ukrainian city of Mariupol demonstrated the transferability challenge for CNN-based models across conflict settings. The new zero-shot pipeline sidesteps all three constraints by operating entirely on open archival data and embedding the physics of blast propagation directly into the geometry of the problem.

Technical Breakdown

Parameter Detail
Platform / system class Software pipeline (no dedicated UAV/UAS hardware); operates on archival pre-strike geospatial basemaps
Data inputs Geolocated incident text (LiveUAMap, ArcGIS); open-source archival tile imagery
Payload estimation LLM extraction of weapon payload mass (W, TNT-equivalent kg) from incident narrative text
Blast perimeter model Hopkinson-Cranz cube-root scaling: R_base = Z × W^(1/3); Z is a scene-specific scaled distance coefficient
2D segmentation backbone SAMGeo (segment-geospatial): Meta SAM extended to georeferenced remote sensing imagery; supports point, bounding-box, and text prompts
Resolution bias correction Adaptive Field-of-View (AFoV): dynamic zoom calibration to eliminate resolution-induced counting error in 2D segmentation
3D augmentation layer 2.5D pseudo-height depth maps derived from optical basemap tiles; fused with 2D segmentation masks
Dense-urban inference Large Vision-Language Models (LVLMs) conditioned on depth-augmented inputs; resolves overlapping/occluded rooftops
Autonomy level Fully automated end-to-end inference; zero-shot (no post-strike labelled data required at inference)
Evaluation dataset 2026 Middle East conflict incidents
Key result Depth-augmented LVLMs dramatically outperform traditional 2D segmentation in congested urban centres

Industry Impact

Humanitarian and crisis-response operators gain a concrete tool for rapid structure-impact estimation when post-strike imagery is unavailable or embargoed. The zero-shot design means no labelled conflict dataset needs to be assembled before deployment — a decisive advantage in fast-moving situations.

Geospatial intelligence integrators will note that the pipeline relies entirely on open, commercially available inputs — LiveUAMap incident feeds, ArcGIS coordinate data, and public basemap tiles — reducing dependency on proprietary VHR satellite contracts. This lowers the cost threshold for organisations operating in low-resource settings.

AI and computer vision developers face a clear benchmark signal: flat 2D segmentation underperforms in dense urban conflict zones, and the paper's depth-augmented LVLM approach sets a new baseline for rooftop disambiguation. The Adaptive Field-of-View technique for eliminating zoom bias is a transferable contribution applicable beyond crisis mapping — relevant to any aerial or satellite segmentation workflow where scene density varies significantly.

Remote sensing satellite operators and data providers should monitor this research direction closely. If zero-shot archival methods can deliver operationally useful structure counts without post-strike imagery, the commercial leverage of post-event imagery blackouts diminishes as a differentiator — potentially reshaping pricing and access models for conflict-zone data products.

Regulators and standards bodies in the humanitarian technology space may need to address questions around provenance, uncertainty quantification, and audit trails for AI-generated impact estimates used to direct emergency resource allocation. The paper's use of physics-based perimeters (rather than purely learned features) provides a degree of interpretability, but LLM payload extraction from free-text incident reports introduces its own uncertainty chain that will require documented validation protocols.

#zero-shot ai#crisis mapping#building segmentation#llm geospatial#blast radius#samgeo