Skip to main content

A CLI tool and Python library for extracting vector features from geospatial raster (TIF) files using the Segment Anything Model (SAM), and exporting them as GeoJSON.

Project description

Raster Feature Extractor

A CLI tool and Python library for extracting vector features from geospatial raster (TIF) files using Meta AI's Segment Anything Model (SAM), and exporting them as GeoJSON.

Installation

pip install orthomasker

Note: Installation using pip will fail in environments lacking a previous installation of the GDAL library, which is notoriously difficult to install using pip. Instead, using conda is generally recommended:

  • conda create -n your_env_name python=3.10 gdal -c conda-forge
  • conda activate your_env_name
  • pip install orthomasker

Demo

Open In Colab

Usage

# Using CLI
orthomasker your_input_filename.tif your_output_filename.geojson

# Using Python
from orthomasker.feature_extractor import RasterFeatureExtractor

# Provide your own test TIF file (upload or use a sample)
input_tif = "your_input_filename.tif"
output_geojson = "your_output_filename.geojson"

# Set up the extractor (use the path to your .pth file)
extractor = RasterFeatureExtractor()

extractor.convert(input_tif, output_geojson)

Options

  • --sam-checkpoint: Path to SAM model weights (default: sam_vit_h_4b8939.pth)

  • --model-type: SAM model type (vit_h, vit_l, vit_b; default: vit_h)

  • --confidence-threshold: Minimum stability score to keep a mask (0–100; default: 0, no filter)

  • --tile-size: Tile size for processing (default: 1024)

  • --overlap: Tile overlap in pixels (default: 128)

  • --class-name: Class label for output features (default: sam_object)

  • --class-id: Class ID (e.g., 1) for output features (optional)

  • --min-area: Minimum area (in square units of TIF CRS) for output features (optional)

  • --max-area: Maximum area (in square units of TIF CRS) for output features (optional)

  • --compactness: Minimum compactness threshold (0.01.0) using Polsby-Popper metric for filtering irregular shapes (optional)

  • --fixed-bounds: Bounding box (minx, miny, maxx, maxy) in image CRS

  • --merge: Merge overlapping polygons in output (optional)

  • --verbose: Enable verbose output

Compactness Filtering

The --compactness option allows you to filter out irregular or elongated shapes by setting a minimum compactness threshold. This uses the Polsby-Popper compactness metric:

Compactness = (4π × Area) / (Perimeter²)

  • Perfect circle: compactness = 1.0
  • Square: compactness ≈ 0.785
  • Elongated shapes: compactness approaches 0.0

Common threshold values:

  • 0.1: Very permissive (removes only extremely irregular shapes)
  • 0.3: Moderate filtering (removes highly irregular shapes)
  • 0.6: Strict filtering (keeps only relatively compact shapes)
  • 0.8: Very strict (keeps only very round/square shapes)

Acknowledgments

This project leverages Meta AI’s Segment Anything Model (SAM) for automatic mask generation, which is faciliated by utilizing segment-anything-py as a dependency; many thanks to Qiusheng Wu, et al. for their work!

Citations

@article{kirillov2023segany,
title={Segment Anything},
author={Kirillov, Alexander and Mintun, Eric and Ravi, Nikhila and Mao, Hanzi and Rolland, Chloe and Gustafson, Laura and Xiao, Tete and Whitehead, Spencer and Berg, Alexander C. and Lo, Wan-Yen and Doll{'a}r, Piotr and Girshick, Ross},
journal={arXiv:2304.02643},
year={2023}
}

License

This project is licensed under the Apache License 2.0 - see the LICENSE file 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

orthomasker-0.9.6.tar.gz (11.1 kB view details)

Uploaded Source

Built Distribution

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

orthomasker-0.9.6-py3-none-any.whl (10.6 kB view details)

Uploaded Python 3

File details

Details for the file orthomasker-0.9.6.tar.gz.

File metadata

  • Download URL: orthomasker-0.9.6.tar.gz
  • Upload date:
  • Size: 11.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.23

File hashes

Hashes for orthomasker-0.9.6.tar.gz
Algorithm Hash digest
SHA256 4631da0b104815a82d5c1ab44d95c393d03cfd09908984b0e3a522d5438f1efc
MD5 437988163d604f20db7157889d262f96
BLAKE2b-256 8d9d4b7131a6230f77e6126179e49cfe9bf091c96002a9aa866473352c2f64b9

See more details on using hashes here.

File details

Details for the file orthomasker-0.9.6-py3-none-any.whl.

File metadata

  • Download URL: orthomasker-0.9.6-py3-none-any.whl
  • Upload date:
  • Size: 10.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.23

File hashes

Hashes for orthomasker-0.9.6-py3-none-any.whl
Algorithm Hash digest
SHA256 f3ff8496bda99d3a4e62e04424fc2484aaa0a50d9e477fe54e05277c513916db
MD5 1acf4b15f006a6fb6d1981691439aef4
BLAKE2b-256 03b9bfe355a02a569ae8e3d5b79e6e749d685cb7fa05d5e34a5e79321562c4fd

See more details on using hashes here.

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