Skip to main content

Global and local spectral matching of 2 or more overlapping rasters

Project description

spectralmatch: relative radiometric normalization toolkit for raster mosaics and time series

Your-License-Badge codecov Open in Cloud Shell 📋 Copy LLM Prompt PyPI version

Overview

Global and Local Matching

Spectralmatch provides algorithms to perform relative radiometric normalization (RRN) to enhance spectral consistency across raster mosaics and time series. It is built for geoscientific use, with a sensor- and unit-agnostic design, optimized for automation and efficiency on arbitrarily many images and bands, and works well with Very High Resolution Imagery (VHRI) as it does not require pixel co-registration. In addition to matching algorithms, the software supports cloud and vegetation masking, pseudo invariant feature (PIF) based exclusion, seamline network generation, raster merging, and plotting statistics. The toolkit is available as an open-source Python library, command line interface, and QGIS plugin.

Features

  • Automated, Efficient, and Scalable: Designed for large-scale workflows with no manual steps, leveraging multiprocessing and Cloud Optimized GeoTIFF support for fast, efficient processing across images, windows, and bands.

  • Resumable Processing: Save image stats and block maps for quicker reprocessing.

  • Integrated Seamline and Cloud Masking: Generate seamlines and detect clouds within the same workflow.

  • Specify Model Images Include all or specified images in the matching solution to bring all images to a central tendency or selected images spectral profile.

  • Consistent Multi-image Analysis: Performs minimal necessary adjustments to achieve inter-image consistency while preserving the original spectral characteristics.

  • Sensor and Unit Agnostic: Supports optical imagery from handheld cameras, drones, crewed aircraft, and satellites for reliable single sensor and multi-sensor analysis, while preserving spectral integrity across all pixel units—including negative values and reflectance.

  • Enhanced Imagery: Helpful when performing mosaics and time series analysis by blending large image collections and normalizing them over time, providing consistent, high-quality data for machine learning and other analytical tasks.

  • Open Source and Collaborative: Free under the MIT License with a modular design that supports community contributions and easy development of new features and workflows. Accessible through a python library, command line interface, and QGIS plugin.


Current Matching Algorithms

Global to local matching

This technique is derived from 'An auto-adapting global-to-local color balancing method for optical imagery mosaic' by Yu et al., 2017 (DOI: 10.1016/j.isprsjprs.2017.08.002). It is particularly useful for very high-resolution imagery (satellite or otherwise) and works in a two phase process. First, this method applies least squares regression to estimate scale and offset parameters that align the histograms of all images toward a shared spectral center. This is achieved by constructing a global model based on the overlapping areas of adjacent images, where the spectral relationships are defined. This global model ensures that each image conforms to a consistent radiometric baseline while preserving overall color fidelity. However, global correction alone cannot capture intra-image variability so a second local adjustment phase is performed. The overlap areas are divided into smaller blocks, and each block’s mean is used to fine-tune the color correction. This block-wise tuning helps maintain local contrast and reduces visible seams, resulting in seamless and spectrally consistent mosaics with minimal distortion.

Histogram matching graph Mean spectral profiles of five cloud masked Landsat images before and after applying Normalized Difference Vegetation Index masking, global regression, and local block adjustment with spectralmatch.

Assumptions

  • Consistent Spectral Profile: The true spectral response of overlapping areas remains the same throughout the images.

  • Least Squares Modeling: A least squares approach can effectively model and fit all images' spectral profiles.

  • Scale and Offset Adjustment: Applying scale and offset corrections can effectively harmonize images.

  • Minimized Color Differences: The best color correction is achieved when color differences are minimized.

  • Geometric Alignment: Images are assumed to be geometrically aligned with known relative positions via a geotransform. However, they only need to be roughly aligned as pixel co-registration is not required.

  • Global Consistency: Overlapping color differences are consistent across the entire image.

  • Local Adjustments: Block-level color differences result from the global application of adjustments.


Installation (Detailed methods)

Installation as a QGIS Plugin

Install the spectralmatch plugin in QGIS and find the tools in the Processing Toolbox. Install the spectralmatch Python library with the tools in the setup toolbox or manually.

Installation as a Python Library and CLI

Ensure you have the following system-level prerequisites: Python ≥ 3.10, pip, PROJ ≥ 9.3, and GDAL = 3.10.2. Use this command to install the library:

pip install spectralmatch

Usage

Example scripts and sample data are provided to verify a successful installation and help you get started quickly in the repository at /docs/examples and downloadable here.

This is an example mosaic workflow using folders for each step:

working_directory = "/path/to/working/directory"
input_folder = os.path.join(working_directory, "Input")
global_folder = os.path.join(working_directory, "GlobalMatch")
local_folder = os.path.join(working_directory, "LocalMatch")
aligned_folder = os.path.join(working_directory, "Aligned")
clipped_folder = os.path.join(working_directory, "Clipped")

global_regression(
    input_images=input_folder,
    output_images=global_folder,
)

local_block_adjustment(
    input_images=global_folder,
    output_images=local_folder,
)

align_rasters(
    input_images=local_folder,
    output_images=aligned_folder,
    tap=True,
)

voronoi_center_seamline(
    input_images=aligned_folder,
    output_mask=os.path.join(working_directory, "ImageMasks.gpkg"),
    image_field_name="image",
)

mask_rasters(
    input_images=aligned_folder,
    output_images=clipped_folder,
    vector_mask=("include", os.path.join(working_directory, "ImageMasks.gpkg"), "image"),
)

merge_rasters(
    input_images=clipped_folder,
    output_image_path=os.path.join(working_directory, "MergedImage.tif"),
)

Documentation

Documentation is available at spectralmatch.github.io/spectralmatch/.


Contributing Guide

Contributing Guide is available at spectralmatch.github.io/spectralmatch/contributing.


License

This project is licensed under the MIT License. See LICENSE for details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

spectralmatch-1.0.3.tar.gz (70.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

spectralmatch-1.0.3-py3-none-any.whl (68.0 kB view details)

Uploaded Python 3

File details

Details for the file spectralmatch-1.0.3.tar.gz.

File metadata

  • Download URL: spectralmatch-1.0.3.tar.gz
  • Upload date:
  • Size: 70.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for spectralmatch-1.0.3.tar.gz
Algorithm Hash digest
SHA256 96fd85e18f7a18748d94ed3d264da9eec2e08bbcbf656cbb02654e648edc73c3
MD5 d9776e84b9b6a734a687ea6c9d7d8b55
BLAKE2b-256 ab7bebd1398d5724c669081ad07dc3df7799990f72d1798b54143a1fde327f61

See more details on using hashes here.

Provenance

The following attestation bundles were made for spectralmatch-1.0.3.tar.gz:

Publisher: publish.yml on spectralmatch/spectralmatch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file spectralmatch-1.0.3-py3-none-any.whl.

File metadata

  • Download URL: spectralmatch-1.0.3-py3-none-any.whl
  • Upload date:
  • Size: 68.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for spectralmatch-1.0.3-py3-none-any.whl
Algorithm Hash digest
SHA256 0988e742ba87e09729ff3e8927086e4e0ed98b3f0435f76f8275685c3b6488f8
MD5 48fc128090f1675ecb4dd242a87263d6
BLAKE2b-256 6fbbec3e5c8cd1a62ac71761f0ee4092e6dea054b3540054f7a75a73c6c1ede1

See more details on using hashes here.

Provenance

The following attestation bundles were made for spectralmatch-1.0.3-py3-none-any.whl:

Publisher: publish.yml on spectralmatch/spectralmatch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page