Back to News Hub
🟧AWS Machine Learning
June 22, 2026
Funding & Investment

Embed the world: Multimodal AI for searchable aerial imagery at scale

Overview

A technical exploration of building a multimodal AI system for searchable aerial imagery at scale using Amazon Bedrock and OpenSearch Serverless. The research compares embedding models, fusion strategies, and search methods to optimize geospatial semantic search, ultimately demonstrating that Amazon Nova Multimodal Embeddings achieved the highest performance metrics.

Key Takeaways

  • Amazon Nova Multimodal Embeddings delivered the highest F1 scores for geospatial semantic search across benchmark queries
  • System architecture leverages Amazon Bedrock for multimodal embeddings and Amazon OpenSearch Serverless for scalable retrieval
  • Evaluation methodology grounded in OpenStreetMap data provides validated benchmarks for aerial imagery search performance
  • Design choices in embedding models, fusion strategies, and captioning significantly impact semantic search effectiveness
  • Research findings directly informed the development of Vexcel Intelligence, a production searchable imagery product

Stats & Key Facts

  • #Amazon Nova Multimodal Embeddings achieved highest F1 scores across benchmark queries
  • #Four major experiments conducted comparing embedding models, fusion strategies, captioning approaches, and search methods
Embed the world: Multimodal AI for searchable aerial imagery at scale

The Problem Space in Aerial Imagery Search

Searching through vast collections of aerial imagery requires moving beyond simple pixel matching to semantic understanding.

  • ›Traditional image retrieval methods fail to capture meaningful spatial and contextual information in aerial photographs
  • ›Organizations need to query aerial imagery using natural language and semantic concepts rather than exact visual matches
  • ›Scale challenges emerge when processing millions of aerial images across large geographic regions
  • ›Existing approaches lack the ability to understand complex relationships between geographic features, infrastructure, and landscape elements

The core challenge lies in bridging the gap between human semantic understanding of geographic features and machine-readable image representations. Users want to search for concepts like 'industrial areas near water sources' or 'residential neighborhoods with highway access,' but traditional image search systems operate at the pixel level. Multimodal AI enables systems to understand both visual content and textual descriptions, creating embeddings that capture semantic meaning rather than shallow visual similarity.

At scale, this problem compounds exponentially. Government agencies, urban planners, environmental researchers, and commercial entities maintain petabytes of aerial imagery that remains largely unsearchable in meaningful ways. A production system must handle millions of images efficiently while delivering relevant results in seconds, not hours.

System Architecture: Bedrock and OpenSearch Integration

The architecture combines AWS managed services to create a scalable, serverless pipeline for processing and retrieving aerial imagery.

  • ›Amazon Bedrock provides multimodal embedding models that convert aerial images and text queries into comparable vector representations
  • ›Amazon OpenSearch Serverless handles vector similarity search at scale without capacity planning or infrastructure management
  • ›Serverless design eliminates manual scaling and infrastructure overhead while maintaining consistent query performance
  • ›Architecture supports both image-to-text and text-to-image search through unified embedding space

The system workflow begins with aerial imagery being processed through Amazon Bedrock's multimodal embedding models. These models generate high-dimensional vector embeddings that capture semantic content of the imagery. Simultaneously, optional captions or metadata enrichment further enhances the semantic understanding of each image. These embeddings are then indexed in Amazon OpenSearch Serverless, enabling fast vector similarity search.

At query time, whether a user submits text or reference imagery, the same embedding model converts the query into a vector. OpenSearch Serverless then performs approximate nearest neighbor search to return the most semantically similar images. The serverless architecture automatically scales to handle search loads without requiring users to provision or manage capacity, making it suitable for variable, unpredictable workloads typical of imagery search applications.

Evaluation Methodology and OpenStreetMap Ground Truth

Rigorous evaluation requires validated ground truth data and meaningful metrics that reflect real-world search quality.

  • ›OpenStreetMap provides geographic annotations and feature classifications that serve as ground truth for validation
  • ›F1 score emerged as the primary evaluation metric, balancing precision and recall for semantic search relevance
  • ›Benchmark queries were constructed around common real-world search scenarios in aerial imagery analysis
  • ›Evaluation framework enables comparison of different architectural choices using consistent, reproducible methodology

Building reliable evaluation for aerial imagery search is challenging because relevance is subjective and context-dependent. The team leveraged OpenStreetMap's community-contributed geographic data and feature classifications as an objective ground truth. This approach validates that systems can correctly identify features like buildings, roads, water bodies, and land use patterns that human annotators have already verified.

The evaluation methodology created benchmark queries representing realistic user needs, then measured how effectively each system variant retrieved relevant imagery. F1 scores provided a balanced view of both precision (returning only relevant images) and recall (finding all relevant images), ensuring the system performs well across both dimensions. This comprehensive evaluation approach enables practitioners to make informed decisions about which architectural choices provide the greatest impact on search quality.

Comparative Experiments: Models, Fusion, and Captions

Four distinct experiments isolate and measure the impact of different design choices on search performance.

  • ›Embedding model comparison revealed which multimodal models best capture aerial imagery semantics
  • ›Fusion strategy experiments tested different methods for combining image and text information within embeddings
  • ›Captioning approaches evaluated whether automatically generated or human-curated descriptions improve search quality
  • ›Search method experiments compared vector similarity approaches and ranking strategies for optimal retrieval

The embedding model comparison tested multiple approaches to converting aerial imagery into semantic vectors. Amazon Nova Multimodal Embeddings consistently outperformed alternatives, achieving higher F1 scores across benchmark queries. This success reflects the model's training on diverse imagery and its ability to capture both fine-grained visual details and higher-level geographic concepts relevant to aerial search scenarios.

Fusion strategies examined how to best combine image and text representations. Some approaches concatenated embeddings, others used learned fusion weights, and variants tested sequential versus parallel processing. Results showed that thoughtful fusion design significantly impacts final search quality, with some strategies improving retrieval by 10-15 percentage points compared to simple concatenation.

Captioning experiments explored whether automatically generated descriptions of aerial images (describing visible features, land use patterns, infrastructure) improved semantic search. Results indicated that high-quality captions boost performance, but generation quality matters tremendously-poor captions can degrade search effectiveness. The team found that selective captioning of key features outperformed attempting to caption every image.

Search methodology experiments compared vector similarity ranking with reranking approaches, explored different similarity metrics (cosine similarity, Euclidean distance), and tested filtering strategies to narrow search spaces before similarity computation. These operational details significantly impact both search quality and latency in production systems.

Amazon Nova Multimodal Embeddings: Performance Winner

Among tested approaches, Amazon Nova Multimodal Embeddings emerged as the highest-performing solution for geospatial semantic search.

  • ›Achieved highest F1 scores across all benchmark query types and difficulty levels
  • ›Effectively captures both fine visual details and semantic geographic concepts needed for aerial imagery
  • ›Provides efficient embedding generation suitable for processing millions of images at scale
  • ›Maintains strong performance across diverse imagery types and geographic regions

Amazon Nova Multimodal Embeddings demonstrated superior performance by achieving the highest F1 scores in the evaluation framework. This success reflects careful design choices in the model's training data, architecture, and optimization for real-world imagery search tasks. The model handles both the visual analysis required to identify geographic features and the semantic reasoning needed to match user queries about complex spatial relationships.

The consistent performance across different query types and geographic regions suggests the model generalizes well beyond specific training scenarios. This generalization capability is critical for production systems that must handle diverse queries and imagery from varied climates, seasons, and development contexts around the world.

Practical Guidance for Building Similar Systems

The research produced concrete recommendations that practitioners can apply when implementing geospatial semantic search.

  • ›Invest in high-quality multimodal embedding models rather than training custom models from scratch
  • ›Use serverless architectures to avoid infrastructure management and enable automatic scaling
  • ›Validate systems using objective ground truth data relevant to your geographic domain
  • ›Start with simple fusion strategies and incrementally add complexity only when benchmarking shows improvement
  • ›Consider caption enrichment but prioritize generation quality over comprehensiveness

For organizations building similar systems, the research demonstrates that model selection matters profoundly-choosing the right off-the-shelf multimodal embedding model (like Amazon Nova) typically outperforms investing engineering effort in architectural complexity. The managed services approach using Bedrock and OpenSearch Serverless eliminates infrastructure burden while delivering production-grade performance and reliability.

The research also highlights the importance of grounding evaluation in real-world data and metrics. Teams should establish benchmark queries and ground truth early, using frameworks like OpenStreetMap data to validate improvements. This prevents optimizing for metrics that don't reflect actual user satisfaction.

From Research to Vexcel Intelligence

The research insights directly influenced the development of a production searchable imagery platform.

  • ›Findings informed architectural decisions for Vexcel Intelligence, a commercial searchable imagery product
  • ›Research methodology and evaluation framework validated performance before production deployment
  • ›Design choices identified through experiments were incorporated into the final system
  • ›Results demonstrate the practical viability of multimodal AI for large-scale geospatial applications

This research was not purely academic-it directly informed the development of Vexcel Intelligence, a searchable imagery product that brings these capabilities to market. The experimental findings, performance metrics, and architectural recommendations shaped product design decisions, ensuring that the commercial offering incorporated the most effective approaches identified during evaluation.

The transition from research to production highlighted the importance of the rigorous evaluation methodology. By thoroughly comparing approaches and validating performance against ground truth, the team gained confidence that design choices would translate into real-world benefits for end users searching aerial imagery at scale.

Frequently Asked Questions

Why is multimodal embedding important for aerial imagery search?

Multimodal embeddings enable systems to understand both visual content and text descriptions simultaneously, allowing users to search aerial images using natural language queries rather than pixel matching. This bridges the gap between how humans conceptually understand geographic features and how machines process visual data, enabling semantic search for complex spatial relationships.

What role does OpenStreetMap play in the evaluation?

OpenStreetMap provides validated ground truth data with community-verified geographic feature classifications and annotations. This objective ground truth enables the research team to measure how accurately different system variants identify and retrieve relevant geographic features, ensuring evaluation reflects real-world accuracy rather than subjective assessments.

Why did Amazon Nova Multimodal Embeddings achieve the highest F1 scores?

Amazon Nova Multimodal Embeddings achieved superior performance due to its effective handling of both fine visual details and higher-level semantic geographic concepts. The model's training and architecture enable it to capture the specific types of relationships and features present in aerial imagery, generalizing well across diverse geographic contexts.

What are the key advantages of using serverless architecture for this application?

Serverless architecture using Bedrock and OpenSearch Serverless eliminates infrastructure management and capacity planning while automatically scaling to handle variable search loads. This reduces operational burden and costs while maintaining consistent performance, making it ideal for applications with unpredictable usage patterns.

Should organizations always use image captions for improved search?

While captions can improve search performance, caption quality matters significantly-high-quality captions boost effectiveness, but poor captions degrade results. The research found that selective captioning of key geographic features outperforms attempting to caption every image, suggesting a targeted approach to caption generation is more effective than comprehensive captioning.

Organizations building geospatial search systems should prioritize high-quality multimodal models and rigorous evaluation methodologies over custom complexity.

Continue Learning

Originally published by AWS Machine Learning
Read the original

Comments

Sign in to join the conversation