slurp-masks


Nameslurp-masks JSON
Version 0.0.1 PyPI version JSON
download
home_pagehttps://github.com/CNES/slurp
SummarySmart Land Use Reconstruction Pipeline
upload_time2025-09-08 09:46:41
maintainerNone
docs_urlNone
authorYannick TANGUY
requires_python>=3.8
licenseNone
keywords slurp lulc mask segmentation classification
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI
coveralls test coverage
            <div align="center">
  <a href="https://gitlab.cnes.fr/pluto/slurp"><img src="docs/source/images/logo_SLURP_256.png" alt="SLURP" title="SLURP"  width="20%"></a>

<h4>slurp</h4>

[![Python](https://img.shields.io/badge/python-v3.10+-blue.svg)](https://www.python.org/downloads/release/python-3100/)


<p>
  <a href="#overview">Overview</a> •
  <a href="#first-steps">First steps</a> •
  <a href="#algorithm-description">Algorithm description</a> •
  <a href="#references">References</a>
</p>
</div>

<div id="overview"></div>

## Overview

**SLURP** : **S**mart **L**and **U**se **R**econstruction **P**ipeline

SLURP is your companion to compute a simple land-use/land-cover mask from Very High Resolution (VHR) optical images. It proposes different few or unsupervised learning algorithms that produce *one-versus-all* masks (water, vegetation, shadow, urban). Then a final algorithm stacks them all together and regularize them to obtain into a single multiclass mask.

SLURP uses some global data, such as Global Surface Water (Pekel) for water detection or World Settlement Footprint (WSF) for building detection. 

Data preparation can be achieved with [Orfeo ToolBox](https://www.orfeo-toolbox.org/) or other tools, in order to bring all necessary data in the same projection. You can either build your mask step by step, or use a batch script to launch and build the final mask automatically.
<table border="0">
<tr>
<td>
<img src="docs/source/images/example_step0_PHR_image.png" alt="Initial VHR image" title="Initial VHR image"  width="80%">
</td>
<td>
<img src="docs/source/images/example_step1_watermask.png" alt="Water mask" title="Water mask"  width="80%">
</td>
<td>
<img src="docs/source/images/example_step2_vegetationmask.png" alt="Low/High vegetation and bare ground mask" title="Low/High vegetation mask"  width="80%">
</td>
<td>
<img src="docs/source/images/example_step3_shadowmask.png" alt="Shadow mask" title="Shadow mask"  width="80%">
</td>
<td>
<img src="docs/source/images/example_step4_urbanproba.png" alt="Urban probability" title="Urban probability"  width="80%">
</td>
<td>
<img src="docs/source/images/example_step5_stack_regul.png" alt="Final mask" title="Final mask"  width="80%">
</td>
</tr>
<tr>
<td>Bring your own VHR 4 bands (R/G/B/NIR) image (Pleiades, WorldView, PNEO, CO3D,...)</td>
<td>Learn water occurrence (from 'Pekel') and predict water mask</td>
<td>Use an unsupervised clustering algorithm to detect low/high vegetation and bare ground</td>
<td>Detect large shadows (but avoid water confusion)</td>
<td>Learn 'WSF" urban mask and compute building probability</td>
<td>Stack and regularize building and vegetated areas contours</td>
</tr>
</table>

<div id="first-steps"></div>

## First steps

### Installation
SLURP can be installed with pip : 
```
pip install slurp-masks
```
Once your environment is ready, you can prepare data with slurp_prepare and then compute SLURP masks with slurp_watermask, slurp_urbanmask, etc.

Documentation is available on [Read the docs](https://slurp-masks.readthedocs.io/en/latest/)

A tutorial is available : [Tutorial.md](https://github.com/CNES/slurp/blob/improve_doc/docs/source/Tutorial.md).

### Compute a land cover map
SLURP computes several single-class masks (one versus all) and then stacks (and regularize) them into a multi-class map.

SLURP needs to superimpose some external data so it fits your target VHR image. It can be done through OTB Superimpose application
```
mkdir out
# Superimpose Pekel, Hand and WSF with OTB
# 
# /!\ Adapt path depending on where your global Pekel database (resp. HAND, WSF) is located
otbcli_Superimpose -inr <your VHR image.tif> -inm <path to Global Surface Water Pekel occurrence file> -out "out/pekel.tif?&gdal:co:TILED=YES&gdal:co:COMPRESS=DEFLATE" uint8 -interpolator nn
otbcli_Superimpose -inr <your VHR image.tif> -inm <path to Heigh Above Nearest Drainage map>  -out "out/hand.tif?&gdal:co:TILED=YES&gdal:co:COMPRESS=DEFLATE" 
otbcli_Superimpose -inr <your VHR image.tif> -inm <path to World Settlement Footprint map> -out "out/wsf.tif?&gdal:co:TILED=YES&gdal:co:COMPRESS=DEFLATE" uint8 -interpolator nn

# Prepare : computes primitives (NDVI / NDWI / textures)
slurp_prepare <your_slurp_conf.json> -file_vhr <your VHR image.tif>

# Watermask : learn from Pekel database and predict water occurrence
slurp_watermask out/effective_used_config.json

# Vegetationmask : segment image and apply clustering method to detect low/high vegetation
slurp_vegetationmask out/effective_used_config.json

# Shadowmask : threshold RGB and NIR to detect shadows
slurp_shadowmask out/effective_used_config.json

# Urbanmask : learn from WSF and compute urban probability
slurp_urbanmask out/effective_used_config.json 

# Stack : regularize all the previous masks together
slurp_stackmasks out/effective_used_config.json 
```

<div id="algorithm-description"></div>

## Algorithm description
SLURP is designed to compute a simple land cover map (water, low/high vegetation, bare groud, buildings) from a VHR (Very High Resolution) image with
4 bands (Red, Green, Blue, Near-Infrared). SLURP is based on few or unsupervised algorithms (random forest, clustering, segmentation) that need some auxiliary data for training step. 

It had been validated with Pleiades and tested with WordView, CO3D, Pleiades NEO images. It shall also work with images with lower resolution (ex : SPOT 6/7).

### Auxiliary input data

| Data | Step / usage | Comments | 
| ------ | ------ | ------ |
| [Pekel](https://global-surface-water.appspot.com/download) (Global Surface Water) | **Water mask prediction** : Water occurrence [0-100] during the last 30 years, used to learn a water prediction model (*MANDATORY*) | The global map is mandatory but you can also use some data by month | 
| [Hand MERIT](http://hydro.iis.u-tokyo.ac.jp/~yamadai/MERIT_Hydro/) |  **Water mask prediction** : Map of height above nearest drainage used to optimize choice of "non water" samples in the training step (*OPTIONAL*)  |  Free after registration (other kind of HAND maps exist) |
| [WSF 2019](https://download.geoservice.dlr.de/WSF2019/) (World Settlement Footprint) |   **Urban mask prediction** : global buildings map used to learn a building prediction model (*MANDATORY*)| Could be replaced by a better resolution map if available (ex : OSM buildings) |
| [ESA WorldCover](https://viewer.esa-worldcover.org/worldcover) | **Vegetation mask configuration** Global land cover map (10m resolution) used to customize vegetation clustering (*OPTIONAL*) | Very helpful to parameterize balance between non-vegetation / low and high vegetation clusters (see vegetation mask algorithm) |
| [Copernicus WBM](https://dataspace.copernicus.eu/explore-data/data-collections/copernicus-contributing-missions/collections-description/COP-DEM) | **Stack mask** : Water Body Mask from Copernicus, used to classify each water body from the watermasl (*OPTIONAL*) | If used, the final map will contain river, lake, sea classes |

### Data preparation

Some masks need auxiliary files and some primitives computed from your VHR image. 

These data must be on the same projection, resolution and bounding box as the VHR input image to enable mask computation. 

You can generate this data yourself or use the prepare command (`slurp_prepare`) available in SLURP.

The prepare script enables :
- Computation of stack validity (with or without a cloud mask)
- Computation of NDVI and NDWI
- Extraction of largest Pekel file (in sensor mode only)
- Extraction of largest HAND file (in sensor mode only)
- Extraction of WSF file (in sensor mode only)
- Extraction of Water Body Mask (if needed, in sensor mode only)
- Computation of texture file (convolution on NIR band)

### Water mask
Water model is learned from Pekel (Global Surface Water) reference data and is based on NDVI/NDWI2 indices.

First the algorithm will pick-up water (and non-water) samples from your image, by using Pekel as *a prior*.

Then, a random forest learns how to predict water and predicts a raw mask on the whole image. 
The predicted mask is cleaned with Pekel, possibly with HAND (Height Above Nearest Drainage) maps and post-processed to clean artefacts.

It is possible to adapt a lot of parameters (see `slurp_watermask -h`) to adapt learning parameters, add other features (`-layers <features in an other raster>`), etc.

### Vegetation mask
Vegetation mask are computed with an unsupervised clustering algorithm. First some primitives are computed from VHR image (NDVI, NDWI2, textures).
Then a segmentation is processed (SLIC) and segments are dispatched in several clusters depending on their features.
A final labellisation affects a class to each segment (ie : high NDVI and low texture denotes for low vegetation).

### Urban (building) mask
An urban model (building) is learned from WSF reference map. The algorithm can take into account water and vegetation masks in order to improve samples selection (non building pixels will be chosen outside WSF and outside water/vegetation masks). 
The output is a "building probability" layer ([0..100]) that is used by the stack algorithm.

### Shadow mask
Shadow mask detects dark areas (supposed shadows), based on two thresholds (RGB, NIR). 
A post-processing step removes small shadows, holes, etc. The resulting mask is a three-classes mask (no shadow, small shadow, big shadows). 
The big shadows are used in the stack algorithm in the regularization step.

### Stack and regularize buildings
The stack algorithm takes into account all previous masks to produce a 6 classes mask (water, low vegetation, high vegetation, building, bare soil, other) and an auxiliary height layer (low / high / unknown). 

The algorithm regularizes urban mask with a watershed algorithm based on building probability and context of surrounding areas. 

This algorithm first computes a gradient on the image and fills a marker layer with known classes. Then a watershed step helps to adjust contours along gradient image, thus regularizing buildings shapes.

The stack algorithm can also categorize water bodies (lake, river, sea) if you provide a general water body mask as an input.

You can override the JSON with CLI arguments. For example : `slurp_stackmasks <JSON file> -file_vhr <VHR input image> -remove_small_objects 500 -binary_closing 3`

<div id="references"></div>

## References

SLURP vegetation algorithm had been described in the following paper : [Smart Land Use Masks : A Simple and Robust Approach to Produce Low/High Vegetation Masks from a Single High Resolution Satellite Image](https://doi.org/10.1109/IGARSS53475.2024.10641347)

This package was created with PLUTO-cookiecutter project template.

Inspired by [main cookiecutter template](https://github.com/audreyfeldroy/cookiecutter-pypackage) and 
[CARS cookiecutter template](https://gitlab.cnes.fr/cars/cars-cookiecutter)

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/CNES/slurp",
    "name": "slurp-masks",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": "slurp, LULC, mask, segmentation, classification",
    "author": "Yannick TANGUY",
    "author_email": "yannick.tanguy@cnes.fr",
    "download_url": null,
    "platform": "any",
    "description": "<div align=\"center\">\n  <a href=\"https://gitlab.cnes.fr/pluto/slurp\"><img src=\"docs/source/images/logo_SLURP_256.png\" alt=\"SLURP\" title=\"SLURP\"  width=\"20%\"></a>\n\n<h4>slurp</h4>\n\n[![Python](https://img.shields.io/badge/python-v3.10+-blue.svg)](https://www.python.org/downloads/release/python-3100/)\n\n\n<p>\n  <a href=\"#overview\">Overview</a> \u2022\n  <a href=\"#first-steps\">First steps</a> \u2022\n  <a href=\"#algorithm-description\">Algorithm description</a> \u2022\n  <a href=\"#references\">References</a>\n</p>\n</div>\n\n<div id=\"overview\"></div>\n\n## Overview\n\n**SLURP** : **S**mart **L**and **U**se **R**econstruction **P**ipeline\n\nSLURP is your companion to compute a simple land-use/land-cover mask from Very High Resolution (VHR) optical images. It proposes different few or unsupervised learning algorithms that produce *one-versus-all* masks (water, vegetation, shadow, urban). Then a final algorithm stacks them all together and regularize them to obtain into a single multiclass mask.\n\nSLURP uses some global data, such as Global Surface Water (Pekel) for water detection or World Settlement Footprint (WSF) for building detection. \n\nData preparation can be achieved with [Orfeo ToolBox](https://www.orfeo-toolbox.org/) or other tools, in order to bring all necessary data in the same projection. You can either build your mask step by step, or use a batch script to launch and build the final mask automatically.\n<table border=\"0\">\n<tr>\n<td>\n<img src=\"docs/source/images/example_step0_PHR_image.png\" alt=\"Initial VHR image\" title=\"Initial VHR image\"  width=\"80%\">\n</td>\n<td>\n<img src=\"docs/source/images/example_step1_watermask.png\" alt=\"Water mask\" title=\"Water mask\"  width=\"80%\">\n</td>\n<td>\n<img src=\"docs/source/images/example_step2_vegetationmask.png\" alt=\"Low/High vegetation and bare ground mask\" title=\"Low/High vegetation mask\"  width=\"80%\">\n</td>\n<td>\n<img src=\"docs/source/images/example_step3_shadowmask.png\" alt=\"Shadow mask\" title=\"Shadow mask\"  width=\"80%\">\n</td>\n<td>\n<img src=\"docs/source/images/example_step4_urbanproba.png\" alt=\"Urban probability\" title=\"Urban probability\"  width=\"80%\">\n</td>\n<td>\n<img src=\"docs/source/images/example_step5_stack_regul.png\" alt=\"Final mask\" title=\"Final mask\"  width=\"80%\">\n</td>\n</tr>\n<tr>\n<td>Bring your own VHR 4 bands (R/G/B/NIR) image (Pleiades, WorldView, PNEO, CO3D,...)</td>\n<td>Learn water occurrence (from 'Pekel') and predict water mask</td>\n<td>Use an unsupervised clustering algorithm to detect low/high vegetation and bare ground</td>\n<td>Detect large shadows (but avoid water confusion)</td>\n<td>Learn 'WSF\" urban mask and compute building probability</td>\n<td>Stack and regularize building and vegetated areas contours</td>\n</tr>\n</table>\n\n<div id=\"first-steps\"></div>\n\n## First steps\n\n### Installation\nSLURP can be installed with pip : \n```\npip install slurp-masks\n```\nOnce your environment is ready, you can prepare data with slurp_prepare and then compute SLURP masks with slurp_watermask, slurp_urbanmask, etc.\n\nDocumentation is available on [Read the docs](https://slurp-masks.readthedocs.io/en/latest/)\n\nA tutorial is available : [Tutorial.md](https://github.com/CNES/slurp/blob/improve_doc/docs/source/Tutorial.md).\n\n### Compute a land cover map\nSLURP computes several single-class masks (one versus all) and then stacks (and regularize) them into a multi-class map.\n\nSLURP needs to superimpose some external data so it fits your target VHR image. It can be done through OTB Superimpose application\n```\nmkdir out\n# Superimpose Pekel, Hand and WSF with OTB\n# \n# /!\\ Adapt path depending on where your global Pekel database (resp. HAND, WSF) is located\notbcli_Superimpose -inr <your VHR image.tif> -inm <path to Global Surface Water Pekel occurrence file> -out \"out/pekel.tif?&gdal:co:TILED=YES&gdal:co:COMPRESS=DEFLATE\" uint8 -interpolator nn\notbcli_Superimpose -inr <your VHR image.tif> -inm <path to Heigh Above Nearest Drainage map>  -out \"out/hand.tif?&gdal:co:TILED=YES&gdal:co:COMPRESS=DEFLATE\" \notbcli_Superimpose -inr <your VHR image.tif> -inm <path to World Settlement Footprint map> -out \"out/wsf.tif?&gdal:co:TILED=YES&gdal:co:COMPRESS=DEFLATE\" uint8 -interpolator nn\n\n# Prepare : computes primitives (NDVI / NDWI / textures)\nslurp_prepare <your_slurp_conf.json> -file_vhr <your VHR image.tif>\n\n# Watermask : learn from Pekel database and predict water occurrence\nslurp_watermask out/effective_used_config.json\n\n# Vegetationmask : segment image and apply clustering method to detect low/high vegetation\nslurp_vegetationmask out/effective_used_config.json\n\n# Shadowmask : threshold RGB and NIR to detect shadows\nslurp_shadowmask out/effective_used_config.json\n\n# Urbanmask : learn from WSF and compute urban probability\nslurp_urbanmask out/effective_used_config.json \n\n# Stack : regularize all the previous masks together\nslurp_stackmasks out/effective_used_config.json \n```\n\n<div id=\"algorithm-description\"></div>\n\n## Algorithm description\nSLURP is designed to compute a simple land cover map (water, low/high vegetation, bare groud, buildings) from a VHR (Very High Resolution) image with\n4 bands (Red, Green, Blue, Near-Infrared). SLURP is based on few or unsupervised algorithms (random forest, clustering, segmentation) that need some auxiliary data for training step. \n\nIt had been validated with Pleiades and tested with WordView, CO3D, Pleiades NEO images. It shall also work with images with lower resolution (ex : SPOT 6/7).\n\n### Auxiliary input data\n\n| Data | Step / usage | Comments | \n| ------ | ------ | ------ |\n| [Pekel](https://global-surface-water.appspot.com/download) (Global Surface Water) | **Water mask prediction** : Water occurrence [0-100] during the last 30 years, used to learn a water prediction model (*MANDATORY*) | The global map is mandatory but you can also use some data by month | \n| [Hand MERIT](http://hydro.iis.u-tokyo.ac.jp/~yamadai/MERIT_Hydro/) |  **Water mask prediction** : Map of height above nearest drainage used to optimize choice of \"non water\" samples in the training step (*OPTIONAL*)  |  Free after registration (other kind of HAND maps exist) |\n| [WSF 2019](https://download.geoservice.dlr.de/WSF2019/) (World Settlement Footprint) |   **Urban mask prediction** : global buildings map used to learn a building prediction model (*MANDATORY*)| Could be replaced by a better resolution map if available (ex : OSM buildings) |\n| [ESA WorldCover](https://viewer.esa-worldcover.org/worldcover) | **Vegetation mask configuration** Global land cover map (10m resolution) used to customize vegetation clustering (*OPTIONAL*) | Very helpful to parameterize balance between non-vegetation / low and high vegetation clusters (see vegetation mask algorithm) |\n| [Copernicus WBM](https://dataspace.copernicus.eu/explore-data/data-collections/copernicus-contributing-missions/collections-description/COP-DEM) | **Stack mask** : Water Body Mask from Copernicus, used to classify each water body from the watermasl (*OPTIONAL*) | If used, the final map will contain river, lake, sea classes |\n\n### Data preparation\n\nSome masks need auxiliary files and some primitives computed from your VHR image. \n\nThese data must be on the same projection, resolution and bounding box as the VHR input image to enable mask computation. \n\nYou can generate this data yourself or use the prepare command (`slurp_prepare`) available in SLURP.\n\nThe prepare script enables :\n- Computation of stack validity (with or without a cloud mask)\n- Computation of NDVI and NDWI\n- Extraction of largest Pekel file (in sensor mode only)\n- Extraction of largest HAND file (in sensor mode only)\n- Extraction of WSF file (in sensor mode only)\n- Extraction of Water Body Mask (if needed, in sensor mode only)\n- Computation of texture file (convolution on NIR band)\n\n### Water mask\nWater model is learned from Pekel (Global Surface Water) reference data and is based on NDVI/NDWI2 indices.\n\nFirst the algorithm will pick-up water (and non-water) samples from your image, by using Pekel as *a prior*.\n\nThen, a random forest learns how to predict water and predicts a raw mask on the whole image. \nThe predicted mask is cleaned with Pekel, possibly with HAND (Height Above Nearest Drainage) maps and post-processed to clean artefacts.\n\nIt is possible to adapt a lot of parameters (see `slurp_watermask -h`) to adapt learning parameters, add other features (`-layers <features in an other raster>`), etc.\n\n### Vegetation mask\nVegetation mask are computed with an unsupervised clustering algorithm. First some primitives are computed from VHR image (NDVI, NDWI2, textures).\nThen a segmentation is processed (SLIC) and segments are dispatched in several clusters depending on their features.\nA final labellisation affects a class to each segment (ie : high NDVI and low texture denotes for low vegetation).\n\n### Urban (building) mask\nAn urban model (building) is learned from WSF reference map. The algorithm can take into account water and vegetation masks in order to improve samples selection (non building pixels will be chosen outside WSF and outside water/vegetation masks). \nThe output is a \"building probability\" layer ([0..100]) that is used by the stack algorithm.\n\n### Shadow mask\nShadow mask detects dark areas (supposed shadows), based on two thresholds (RGB, NIR). \nA post-processing step removes small shadows, holes, etc. The resulting mask is a three-classes mask (no shadow, small shadow, big shadows). \nThe big shadows are used in the stack algorithm in the regularization step.\n\n### Stack and regularize buildings\nThe stack algorithm takes into account all previous masks to produce a 6 classes mask (water, low vegetation, high vegetation, building, bare soil, other) and an auxiliary height layer (low / high / unknown). \n\nThe algorithm regularizes urban mask with a watershed algorithm based on building probability and context of surrounding areas. \n\nThis algorithm first computes a gradient on the image and fills a marker layer with known classes. Then a watershed step helps to adjust contours along gradient image, thus regularizing buildings shapes.\n\nThe stack algorithm can also categorize water bodies (lake, river, sea) if you provide a general water body mask as an input.\n\nYou can override the JSON with CLI arguments. For example : `slurp_stackmasks <JSON file> -file_vhr <VHR input image> -remove_small_objects 500 -binary_closing 3`\n\n<div id=\"references\"></div>\n\n## References\n\nSLURP vegetation algorithm had been described in the following paper : [Smart Land Use Masks : A Simple and Robust Approach to Produce Low/High Vegetation Masks from a Single High Resolution Satellite Image](https://doi.org/10.1109/IGARSS53475.2024.10641347)\n\nThis package was created with PLUTO-cookiecutter project template.\n\nInspired by [main cookiecutter template](https://github.com/audreyfeldroy/cookiecutter-pypackage) and \n[CARS cookiecutter template](https://gitlab.cnes.fr/cars/cars-cookiecutter)\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "Smart Land Use Reconstruction Pipeline",
    "version": "0.0.1",
    "project_urls": {
        "Homepage": "https://github.com/CNES/slurp"
    },
    "split_keywords": [
        "slurp",
        " lulc",
        " mask",
        " segmentation",
        " classification"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "63777fc58b30d63e93611e08d6eb813ce974b4d84fd758e0d2c362d853273ccf",
                "md5": "d4ca1b5025346fa1c9e3282eaabb1eb1",
                "sha256": "08bb214737357af0f366040259fdc538bf1102190c0bc6ac6c9114fcbf59f013"
            },
            "downloads": -1,
            "filename": "slurp_masks-0.0.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d4ca1b5025346fa1c9e3282eaabb1eb1",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 752367,
            "upload_time": "2025-09-08T09:46:41",
            "upload_time_iso_8601": "2025-09-08T09:46:41.603034Z",
            "url": "https://files.pythonhosted.org/packages/63/77/7fc58b30d63e93611e08d6eb813ce974b4d84fd758e0d2c362d853273ccf/slurp_masks-0.0.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "11e641f6c83ad0d7e37a58d7bcb512d82d00d50fb3f5acb00915b80c2ddf5df2",
                "md5": "acb8a236116b659e9b383d6ee056da5f",
                "sha256": "542de3ca0c3edfd058fa7f60b21b1d8265c47f7fccd6a35fc03fdca865134852"
            },
            "downloads": -1,
            "filename": "slurp_masks-0.0.1-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "acb8a236116b659e9b383d6ee056da5f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 754780,
            "upload_time": "2025-09-08T09:46:44",
            "upload_time_iso_8601": "2025-09-08T09:46:44.386330Z",
            "url": "https://files.pythonhosted.org/packages/11/e6/41f6c83ad0d7e37a58d7bcb512d82d00d50fb3f5acb00915b80c2ddf5df2/slurp_masks-0.0.1-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e9c553cc7df772db74d3909440299aa6d6be52c45c6d4a1752947d9c433202d9",
                "md5": "8a9453752a88ec8de1b4a2395249ad82",
                "sha256": "007b65aa18920b86a52d2780759935d9144976401646a8e44ebb161023860ed1"
            },
            "downloads": -1,
            "filename": "slurp_masks-0.0.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8a9453752a88ec8de1b4a2395249ad82",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 781176,
            "upload_time": "2025-09-08T09:46:47",
            "upload_time_iso_8601": "2025-09-08T09:46:47.275576Z",
            "url": "https://files.pythonhosted.org/packages/e9/c5/53cc7df772db74d3909440299aa6d6be52c45c6d4a1752947d9c433202d9/slurp_masks-0.0.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "da625d8ee03c60bc645f4c720a5d2d5321c7e5fc6fdd8161cd3d18fd87db32b2",
                "md5": "3ac77439f1d662e0956cd484d44da98d",
                "sha256": "f5f1dd02b3f56c87606584d132ef39733fcabe1c1e922daf98bcff07ff442373"
            },
            "downloads": -1,
            "filename": "slurp_masks-0.0.1-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3ac77439f1d662e0956cd484d44da98d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 783901,
            "upload_time": "2025-09-08T09:46:49",
            "upload_time_iso_8601": "2025-09-08T09:46:49.819392Z",
            "url": "https://files.pythonhosted.org/packages/da/62/5d8ee03c60bc645f4c720a5d2d5321c7e5fc6fdd8161cd3d18fd87db32b2/slurp_masks-0.0.1-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6b2d63fc1550e47e4173a61aa47449d99b18b94993532ac08eb3019c83705e95",
                "md5": "d27baa444648c8b90132ef31eaf4fdf2",
                "sha256": "68cb6383e5b5850478d52185cb96b1c7eae03febfbb56c95173bbf6f4581abd2"
            },
            "downloads": -1,
            "filename": "slurp_masks-0.0.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d27baa444648c8b90132ef31eaf4fdf2",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 771894,
            "upload_time": "2025-09-08T09:46:51",
            "upload_time_iso_8601": "2025-09-08T09:46:51.850256Z",
            "url": "https://files.pythonhosted.org/packages/6b/2d/63fc1550e47e4173a61aa47449d99b18b94993532ac08eb3019c83705e95/slurp_masks-0.0.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "239df0c291d642491422f767885fec50cc4e460e88b2d3e2f242e5a0dde70488",
                "md5": "3650eaed04bd4c5f953a01cf163ab97f",
                "sha256": "bdbd47c4393ea67965bfa8afb499728ae88c1a0a49985e425d4e2e8d20ddce83"
            },
            "downloads": -1,
            "filename": "slurp_masks-0.0.1-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3650eaed04bd4c5f953a01cf163ab97f",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 768811,
            "upload_time": "2025-09-08T09:46:53",
            "upload_time_iso_8601": "2025-09-08T09:46:53.879652Z",
            "url": "https://files.pythonhosted.org/packages/23/9d/f0c291d642491422f767885fec50cc4e460e88b2d3e2f242e5a0dde70488/slurp_masks-0.0.1-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ddae7e30b83c6cdfba13c70fe038b1d3ded80449e2c58d3b0d91e81899580149",
                "md5": "4a30a07814c2a0a69a32d2d0f670416c",
                "sha256": "6d03f030557f47bfc6f1d0662c13257e16694da055feeaf23e5f7859d4e58b70"
            },
            "downloads": -1,
            "filename": "slurp_masks-0.0.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4a30a07814c2a0a69a32d2d0f670416c",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 768293,
            "upload_time": "2025-09-08T09:46:55",
            "upload_time_iso_8601": "2025-09-08T09:46:55.878137Z",
            "url": "https://files.pythonhosted.org/packages/dd/ae/7e30b83c6cdfba13c70fe038b1d3ded80449e2c58d3b0d91e81899580149/slurp_masks-0.0.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "50b13b422a5e8f246e97c670dad9bddbaafbe1eb8e7db8dee48735e41243f734",
                "md5": "640f0973fe7c8dafd05026d277a08a01",
                "sha256": "1012958143cc300a2ef5b388fcd88e3884da4162c8126b27ac8f23c363ee86a3"
            },
            "downloads": -1,
            "filename": "slurp_masks-0.0.1-cp313-cp313-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "640f0973fe7c8dafd05026d277a08a01",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 766752,
            "upload_time": "2025-09-08T09:46:58",
            "upload_time_iso_8601": "2025-09-08T09:46:58.160722Z",
            "url": "https://files.pythonhosted.org/packages/50/b1/3b422a5e8f246e97c670dad9bddbaafbe1eb8e7db8dee48735e41243f734/slurp_masks-0.0.1-cp313-cp313-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4db46268e369aaac2da0ba526bfd7ebc855cd0b08dfcb9475f417bd2b50e526a",
                "md5": "e98eb915ec849a6fab731d05b95f43d7",
                "sha256": "99eb2a132f16954b8225ec1f7cdd11897ca8fc3bb68baaa310cb564d5150a93b"
            },
            "downloads": -1,
            "filename": "slurp_masks-0.0.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e98eb915ec849a6fab731d05b95f43d7",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.8",
            "size": 761489,
            "upload_time": "2025-09-08T09:46:59",
            "upload_time_iso_8601": "2025-09-08T09:46:59.581513Z",
            "url": "https://files.pythonhosted.org/packages/4d/b4/6268e369aaac2da0ba526bfd7ebc855cd0b08dfcb9475f417bd2b50e526a/slurp_masks-0.0.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "400af6ead8506a631367e5e135c8a5f8f5957ed070f5fa8fac436f2f4fae5cc1",
                "md5": "571112378ff952c84de84170ef72d16b",
                "sha256": "b33d3e5a4befda05ba55c7fb15b5bb92d95a5afbf33027d9005fa2944dd714a6"
            },
            "downloads": -1,
            "filename": "slurp_masks-0.0.1-cp314-cp314-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "571112378ff952c84de84170ef72d16b",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.8",
            "size": 762340,
            "upload_time": "2025-09-08T09:47:01",
            "upload_time_iso_8601": "2025-09-08T09:47:01.409699Z",
            "url": "https://files.pythonhosted.org/packages/40/0a/f6ead8506a631367e5e135c8a5f8f5957ed070f5fa8fac436f2f4fae5cc1/slurp_masks-0.0.1-cp314-cp314-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6e6feaf5dbb0998d2b6c07c1eaaa00a09ab84c46624669238a7e05a219b7d4ee",
                "md5": "95677d65f74213e5ef020d159d48c548",
                "sha256": "cc34b2dad2f97c38f482ea87f1e1ba7205eb6a19fea1584e6255a67c133ba165"
            },
            "downloads": -1,
            "filename": "slurp_masks-0.0.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "95677d65f74213e5ef020d159d48c548",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.8",
            "size": 770790,
            "upload_time": "2025-09-08T09:47:03",
            "upload_time_iso_8601": "2025-09-08T09:47:03.220119Z",
            "url": "https://files.pythonhosted.org/packages/6e/6f/eaf5dbb0998d2b6c07c1eaaa00a09ab84c46624669238a7e05a219b7d4ee/slurp_masks-0.0.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9ef0ced8de8ac14ddb8a45f5f19a6fa57ad3c6f0b60ca34a00ff03139719d12f",
                "md5": "12c09008e34d78be39dc55b15ec436ff",
                "sha256": "01605e38852d2a0162b875f9c59774d609a5483d90c686242cef2479761427c2"
            },
            "downloads": -1,
            "filename": "slurp_masks-0.0.1-cp314-cp314t-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "12c09008e34d78be39dc55b15ec436ff",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.8",
            "size": 761777,
            "upload_time": "2025-09-08T09:47:05",
            "upload_time_iso_8601": "2025-09-08T09:47:05.000878Z",
            "url": "https://files.pythonhosted.org/packages/9e/f0/ced8de8ac14ddb8a45f5f19a6fa57ad3c6f0b60ca34a00ff03139719d12f/slurp_masks-0.0.1-cp314-cp314t-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "47c3b662dd365fec07ad11388372785286e4c761cca6aa0696028811506c18de",
                "md5": "0118cfb4e4969cde52049a17d8eb764a",
                "sha256": "d625a490d725109562f12dd925ba9e4086a0a7484801867a01bf648a3c83f904"
            },
            "downloads": -1,
            "filename": "slurp_masks-0.0.1-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0118cfb4e4969cde52049a17d8eb764a",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 773275,
            "upload_time": "2025-09-08T09:47:06",
            "upload_time_iso_8601": "2025-09-08T09:47:06.747359Z",
            "url": "https://files.pythonhosted.org/packages/47/c3/b662dd365fec07ad11388372785286e4c761cca6aa0696028811506c18de/slurp_masks-0.0.1-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "dbdebf7411cce2f0b9732d2bb55c068ea64e397fe3aebd8abbc10eb0fc28f0ed",
                "md5": "1c5b964def4a1967fdada6aac51229fa",
                "sha256": "76722a68d6dcf2e115f144a787530ed0ee2ef96bdb143cca3a65c655a8ff0d4e"
            },
            "downloads": -1,
            "filename": "slurp_masks-0.0.1-cp38-cp38-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1c5b964def4a1967fdada6aac51229fa",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 774249,
            "upload_time": "2025-09-08T09:47:09",
            "upload_time_iso_8601": "2025-09-08T09:47:09.660387Z",
            "url": "https://files.pythonhosted.org/packages/db/de/bf7411cce2f0b9732d2bb55c068ea64e397fe3aebd8abbc10eb0fc28f0ed/slurp_masks-0.0.1-cp38-cp38-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e45b840245c338b0d712b900944692d7c727622c97c55bdf8b88dbae56d002c5",
                "md5": "ff549569c1e7ee24c4e214840147b436",
                "sha256": "9a8f5b2537f9f8c3bc0fa8375c713e0bed8eb0f8cbc48828ea8bdf508343f3fc"
            },
            "downloads": -1,
            "filename": "slurp_masks-0.0.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ff549569c1e7ee24c4e214840147b436",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 751010,
            "upload_time": "2025-09-08T09:47:10",
            "upload_time_iso_8601": "2025-09-08T09:47:10.989556Z",
            "url": "https://files.pythonhosted.org/packages/e4/5b/840245c338b0d712b900944692d7c727622c97c55bdf8b88dbae56d002c5/slurp_masks-0.0.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "dbc9014c24f09b2be7acd95c90d1ddab574a59139b59b76f3df645205478d7b8",
                "md5": "74ff4d94c7f576efedca45c0b433060b",
                "sha256": "145b816db21ad1f4feb897686ad61f10b51ef7f37cd065947f0b347277bb4448"
            },
            "downloads": -1,
            "filename": "slurp_masks-0.0.1-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "74ff4d94c7f576efedca45c0b433060b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 753415,
            "upload_time": "2025-09-08T09:47:12",
            "upload_time_iso_8601": "2025-09-08T09:47:12.361908Z",
            "url": "https://files.pythonhosted.org/packages/db/c9/014c24f09b2be7acd95c90d1ddab574a59139b59b76f3df645205478d7b8/slurp_masks-0.0.1-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-09-08 09:46:41",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "CNES",
    "github_project": "slurp",
    "travis_ci": true,
    "coveralls": true,
    "github_actions": true,
    "tox": true,
    "lcname": "slurp-masks"
}
        
Elapsed time: 0.54919s