Skip to main content

SuperResolution of Sentinel2 imagery.

Project description

Super-resolution for Sentinel 2 files.

Provides a function to Super-sample the 20m bands of the Sentinel 2 imagery to 10m.

It works by using an inception res-net style Deep Learning model trained on 1000 sites randomly selected around the globe. The sites represent at least 25 samples within each Köppen-Geiger climate zones, all cities in the with at least 1 million inhabitatants. For each location, three training mosaics were collected spread out across different seasons resulting in 3000 mosaics.

The model itself is trained by using the RGB bands to sharpen the NIR band. First the resampled NIR band is transposed to the mean values of the RGB bands, secondly the network supersamples the NIR band, and thirdly the network mean-matches the low resolution image to the generated high-resolution image. To super-sample the other bands, they are substituted with the NIR band. The model has been purposely made small to ensure easy deployment.

Dependencies
buteo(https://casperfibaek.github.io/buteo/)
tensorflow (https://www.tensorflow.org/)

Installation
pip install s2super

Quickstart

# Setup
pip install s2super
from s2super import super_sample

# Constants
YEAR = 2021
MONTHS = 1
AOI = [55.67576, 12.56902] # Copenhagen

# Example get Sentinel 2 data function.
data = get_data_from_latlng(AOI, year=YEAR, months=MONTHS)[0] 

# Fast is about 2.5 times faster and almost as good.
super_sampled = super_sample(data, method="fast", fit_data=False)

Super-sampled bands: B05, B06, B07, B8A, B11, B12

super_sample

Super-sample a Sentinel 2 image. The source can either be a NumPy array of the bands, or a .safe file.

Args:

data (str/np.ndarray): The image to supersample. Either .safe file or NumPy array.

Kwargs:

indices (dict): If the input is not a .safe file, a dictionary with the band names and the indices in the NumPy array must be proved. It comes in the form of { "B02": 0, "B03": 1, ... } (Default: 10m first, then 20m)
method (str): Either fast or accurate. If fast, uses less overlaps and weighted average merging. If accurate, uses more overlaps and the mad_merge algorithm (Default: "fast")
fit_data (bool): Should the deep learning model be fitted with the data? Improves accuracy, but takes around 1m to fit on colab. (Default: True)
fit_epochs (int): If the model is refitted, for how many epochs should it run? (Default: 5)
verbose (bool): If True, print statements will update on the progress (Default: True)
normalise (bool): If the input data should be normalised. Leave this True, unless it has already been done. The model expects sentinel 2 l2a data normalised by dividing by 10000.0 (Default: True)
preloaded_model (None/tf.model): Allows preloading the model, useful if applying the super_sampling function within a loop. (Default: None)

Returns:

(np.ndarray): A NumPy array with the supersampled data.

Cite

Fibaek, C.S, Super-sample Sentinel 2, (2022), GitHub repository, https://github.com/casperfibaek/super_res_s2

Developed at the European Space Agency's Φ-lab.

Build

python -m build; python -m twine upload dist/*

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

s2super-1.0.0.tar.gz (28.5 MB view details)

Uploaded Source

Built Distribution

s2super-1.0.0-py3-none-any.whl (28.5 MB view details)

Uploaded Python 3

File details

Details for the file s2super-1.0.0.tar.gz.

File metadata

  • Download URL: s2super-1.0.0.tar.gz
  • Upload date:
  • Size: 28.5 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.12

File hashes

Hashes for s2super-1.0.0.tar.gz
Algorithm Hash digest
SHA256 8c6df4d273b7f47de6bb5b531c6b105ba700a51247e5880dc37b934bb1f18e15
MD5 49fd038653419453d0031badc8ba1f2a
BLAKE2b-256 2ed04a356f8c962b2de2bb94f54d8a028692af989c1bdae02826ed69487ac58f

See more details on using hashes here.

File details

Details for the file s2super-1.0.0-py3-none-any.whl.

File metadata

  • Download URL: s2super-1.0.0-py3-none-any.whl
  • Upload date:
  • Size: 28.5 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.12

File hashes

Hashes for s2super-1.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 f7a91ecd5b50afb4ee4565f3ebdbd090e33500a4fc79c22516e0fc34c4298494
MD5 a3d83aa2de966793210722bca187e7c7
BLAKE2b-256 cea574bfa43b2af9b145fc324e804e0705629da80930aef4dc68d8179f30c86e

See more details on using hashes here.

Supported by

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