Skip to main content

Geo Inference

PyPI - Version Codecov tests

geo-inference is a Python package designed for feature extraction from geospatial imagery using compatible deep learning models. It provides a convenient way to extract features from large TIFF images and save the output mask as a TIFF file. It also supports converting the output mask to vector format (file_name.geojson), YOLO format (file_name.csv), and COCO format (file_name.json). This package is particularly useful for applications in remote sensing, environmental monitoring, and urban planning.

Installation

Geo-inference requires Python 3.11.

Linux Installation

To install the package, use:

pip install geo-inference

Windows Installation

The recipe to use cuda-enabled Geo-inference on Windows OS is slightly different than on Linux-based OS.

  • Validate the nvidia drivers version installed on your computer by running nvcc --version:
PS C:\> nvcc --version
nvcc: NVIDIA (R) Cuda compiler driver
Copyright (c) 2005-2024 NVIDIA Corporation
Built on Tue_Feb_27_16:28:36_Pacific_Standard_Time_2024
Cuda compilation tools, release 12.4, V12.4.99
Build cuda_12.4.r12.4/compiler.33961263_0

Note: If the command returns an error, you need to download and install the Nvidia-drivers first at https://developer.nvidia.com/cuda-downloads.

Note: Make sure to select the cuda version matching the driver installed on your computer.

  • Test the installation:
PS C:\> python
>>> import torch
>>> torch.cuda.is_available()
>>> True
  • install geo-inference using pip:
pip install geo-inference

Docker installation

Alternatively, you can build the Dockerfile to use Geo-Inference.

Usage

Input: GeoTiffs with compatible TorchScript model. For example: A pytorch model trained on high resolution geospatial imagery with the following features:

  • pixel size (0.1m to 3m)

expects an input image with the same features. An example notebook for how the package is used is provided in this repo.

Here's an example of how to use Geo Inference (Command line and Script):

Command line

geo_inference -a <args>
  • -a, --args: Path to arguments stored in yaml, consult ./config/sample_config.yaml
geo_inference -i <image> -br <bands_requested> -m <model> -wd <work_dir> -ps <patch_size> -v <vec> -d <device> -id <gpu_id> -cls <classes> -mg <mgpu> -pr <pr_thr>
  • -i, --image: Path to Geotiff
  • -bb, --bbox: AOI bbox in this format "minx, miny, maxx, maxy" (Optional)
  • -br, --bands_requested: The requested bands from provided Geotiff (if not provided, it uses all bands)
  • -m, --model: Path or URL to the model file
  • -wd, --work_dir: Working Directory
  • -ps, --patch_size: The patch Size, the size of dask chunks, Default = 1024
  • -w, --workers: Number of workers used by dask, Default = Nb of cores available on the host, minus 1
  • -v, --vec: Vector Conversion
  • -y, --yolo: Yolo Conversion
  • -c, --coco: Coco Conversion
  • -d, --device: CPU or GPU Device
  • -id, --gpu_id: GPU ID, Default = 0
  • -cls, --classes: The number of classes that model outputs, Default = 5
  • -mg, --mgpu: Whether to use multi-gpu processing or not, Default = False
  • -pr, --prediction_thr : Prediction probability Threshold (fraction of 1) to use. Default = 0.3
  • -tr, --transformers: Allow Test-time augmentations.
  • tr_f, transformer_flip: Perform horizontal and vertical flips.
  • tr_e, transformer_rotate: perform 90 degree rotation.

You can also use the -h option to get a list of supported arguments:

geo_inference -h

Import script

from geo_inference.geo_inference import GeoInference

# Initialize the GeoInference object
geo_inference = GeoInference(
    model="/path/to/segformer_B5.pt",
    work_dir="/path/to/work/dir",
    mask_to_vec=False,
    mask_to_yolo=False,
    mask_to_coco=False, 
    device="gpu",
    multi_gpu=False,
    gpu_id=0, 
    num_classes=5,
    prediction_threshold=0.3,
    transformers=True,
    transformer_flip=False,
    transformer_rotate=True,
)

# Perform feature extraction on a TIFF image
image_path = "/path/to/image.tif"
bands_requested = "1,2,3"
patch_size = 1024
workers = 0
patch_size = 512
bbox = "0, 0, 1000, 1000"
geo_inference(
    inference_input = image_path,  
    bands_requested = bands_requested, 
    patch_size = patch_size, 
    workers = workers, 
    bbox=bbox
)

Parameters

Initiating the GeoInference class takes the following parameters:

  • model: The path or URL to the model file (.pt for PyTorch models) to use for feature extraction.
  • work_dir: The path to the working directory. Default is "~/.cache".
  • mask_to_vec: If set to "True", vector data will be created from mask. Default is "False"
  • mask_to_yolo: If set to "True", vector data will be converted to YOLO format. Default is "False"
  • mask_to_coco: If set to "True", vector data will be converted to COCO format. Default is "False"
  • device: The device to use for feature extraction. Can be "cpu" or "gpu". Default is "gpu".
  • multi_gpu: If set to "True", uses multi-gpu for running the inference. Default is "False"
  • gpu_id: The ID of the GPU to use for feature extraction. Default is 0.
  • num_classes: The number of classes that the TorchScript model outputs. Default is 5.
  • prediction_threshold: Prediction probability Threshold (fraction of 1) to use. Default is 0.3.
  • transformers: Allow Test-time augmentations.
  • transformer_flip: Perform horizontal and vertical flips.
  • transformer_rotate: perform 90 degree rotation.

Calling the GeoInference object takes the following parameters:

  • inference_input: Path to Geotiff.
  • bands_requested: The requested bands from provided Geotiff (if not provided, it uses all bands).
  • patch_size: The patch size to use for feature extraction. Default is 1024.
  • workers: Number of workers used by Dask, Default is 0 = Number of cores available on the host, minus 1.
  • bbox: AOI bbox in this format "minx, miny, maxx, maxy", in the image's crs. Default is None.

Output

The GeoInference class outputs the following files:

  • mask.tif: The output mask file in TIFF format.
  • polygons.geojson: The output polygon file in GeoJSON format. This file is only generated if the mask_to_vec parameter is set to True.
  • yolo.csv: The output YOLO file in CSV format. This file is only generated if the mask_to_vec, vec_to_yolo parameters are set to True.
  • coco.json: The output COCO file in JSON format. This file is only generated if the mask_to_vec, vec_to_coco parameters are set to True.

Each file contains the extracted features from the input geospatial imagery.

License

Geo Inference is released under the Open Government License - Canada. See LICENSE for more information.

Contact

For any questions or concerns, please open an issue on GitHub.

Release files for geo-inference 3.2.4

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for geo-inference 3.2.4
File Size Uploaded
geo_inference-3.2.4.tar.gz 38.0 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for geo-inference 3.2.4
File Interpreter ABI Platform
geo_inference-3.2.4-py3-none-any.whl Python 3 none any Details

Total release size: 73.0 kB

Release files / geo_inference-3.2.4.tar.gz

Download URL geo_inference-3.2.4.tar.gz
Size 38.0 kB
Tags Source
SHA-256 checksum
How to use checksums
6497aabe666b882b300e659218c011152f6627868e7831b52a4ba8006df68e4f
BLAKE2b-256 checksum
How to use checksums
af59f55fbe4ac812489010c9e3c128d616149613a7714b29f534e0759e58745e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.0

Release files / geo_inference-3.2.4-py3-none-any.whl

Download URL geo_inference-3.2.4-py3-none-any.whl
Size 35.0 kB
Tags Python 3
SHA-256 checksum
How to use checksums
72d8a9b4231bf38d05224532e51bd6914e8c6020d5872ee6618fc23d6d523e77
BLAKE2b-256 checksum
How to use checksums
848802a7be8624e40c09826702b125701691ec076d28b8086f1e63f6eabb91fb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.0

Release history Release notifications | RSS feed

This release

3.2.4 This release

2 release files

3.2.3

2 release files

3.2.2

2 release files

3.2.0

2 release files

3.1.1

2 release files

3.1.0

2 release files

3.0.0

2 release files

2.0.7

2 release files

2.0.6

2 release files

2.0.5

2 release files

2.0.4

2 release files

2.0.3

2 release files

2.0.2

2 release files

2.0.1

2 release files

2.0.0

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page