Skip to main content

Stabilizes video or extracted trajectories with respect to a selected reference frame in the video, with optional user-provided masks.

Project description

Stabilo

GitHub Release PyPI Version PyPI - Total Downloads PyPI - Downloads per Month CI Python License GitHub Issues Open Access arXiv Archived Code YouTube

Stabilo is a specialized Python package for stabilizing video frames or tracked object trajectories in videos, using robust homography or affine transformations. Its core functionality focuses on aligning each frame or object track to a chosen reference frame, enabling precise stabilization that mitigates disturbances like camera movements. Key features include robust keypoint-based image registration and the option to integrate user-defined masks, which exclude dynamic regions (e.g., moving objects) to enhance stabilization accuracy. Integrating seamlessly with object detection and tracking algorithms, Stabilo is ideal for high-precision applications like urban traffic monitoring, as demonstrated in the Geo-trax 🚀 trajectory extraction framework. Extensive transformation and enhancement options, including multiple feature detectors and matchers, masking techniques, further expand its utility. For systematic evaluation and hyperparameter tuning, the companion tool Stabilo-Optimize 🎯 provides a dedicated benchmarking framework. The repository also includes valuable resources like utility scripts and example videos to demonstrate its capabilities.

Stabilization Visualization

🎬 An accelerated preview of Stabilo's capabilities. Watch the full 14-second 4K demo on YouTube.

Features

  • Video Stabilization: Align (warp) all video frames to a custom (anchor) reference frame using homography or affine transformations.
  • Trajectory Stabilization: Transform object trajectories (e.g., bounding boxes) to a common fixed reference frame using homography or affine transformations.
  • User-Defined Masks: Allow users to specify custom masks to exclude regions of interest during stabilization, supporting axis-aligned boxes, oriented bounding boxes (OBBs), four-point boxes, polygonal masks, and circular masks.
  • Wide Range of Algorithms: Includes support for various feature detectors (ORB, SIFT, RSIFT, BRISK, KAZE, AKAZE), matchers (BF, FLANN), RANSAC algorithms (MAGSAC++, DEGENSAC, ...), transformation types, and pre-processing options.
  • Optional CUDA GPU Acceleration: Feature detection, matching, and frame warping can run on an NVIDIA GPU (gpu=True) when built against a CUDA-enabled OpenCV; see docs/cuda.md for build instructions. RANSAC-based transformation estimation always runs on CPU (no OpenCV CUDA equivalent exists).
  • Customizable Parameters: Fine-tune the stabilization by adjusting parameters such as the number of keypoints, RANSAC parameters, matching thresholds, downsampling factors, etc..
  • Visualization Tools: Generate visualizations of the stabilization process, with frame-by-frame comparisons and trajectory transformations (see the above animation).
  • Threshold Analysis: Analyze the relationship between detection thresholds and keypoint counts for BRISK, KAZE, and AKAZE to fairly benchmark with different detectors.
  • Benchmarking and Optimization: Fine-tune stabilization parameters with Stabilo-Optimize 🎯, which provides ground truth-free evaluation using random perturbations.
🚀 Planned Enhancements
  • Deep Learning-Based Feature Detectors: Adding support for learned feature detectors and descriptors (e.g., SuperPoint) as alternatives to the classical detectors.
  • Bi-directional Matching: Implementing bi-directional matching to enhance the robustness of keypoint matching.
  • Additional Feature Detectors: Adding support for more feature detectors and matchers to provide users with a wider range of options for stabilization.
🔗 Related Projects

Stabilo integrates with and complements several specialized tools:

  • Geo-trax 🚀 — End-to-end framework for extracting georeferenced vehicle trajectories from drone imagery. Uses Stabilo as its core stabilization engine to align video frames and vehicle tracks to a common reference frame.

  • Stabilo-Optimize 🎯 — Benchmarking and hyperparameter optimization framework for Stabilo. Evaluates stabilization performance through ground truth-free assessment using random perturbations. Used to fine-tune Stabilo parameters.

  • HBB2OBB 📦 — Converts horizontal bounding boxes to oriented bounding boxes using SAM segmentation models. Can be used alongside Stabilo when object orientation is needed for downstream analysis.

Installation

It is recommended to create and activate a Python virtual environment (Python >= 3.9 and <= 3.13) first:

python3.11 -m venv .venv
source .venv/bin/activate  # On Windows: .venv\Scripts\activate
Alternatives: conda or uv

Miniconda:

conda create -n stabilo python=3.11 -y
conda activate stabilo

uv (fastest; use uv pip install in step 3):

uv venv --python 3.11
source .venv/bin/activate  # On Windows: .venv\Scripts\activate

Then, install the stabilo library using one of the following options:

Option 1: Install from PyPI

pip install stabilo

Option 2: Install from Local Source

You can also clone the repository and install the package from the local source:

git clone https://github.com/rfonod/stabilo.git
cd stabilo && pip install .

If you want the changes you make in the repo to be reflected in your install, use pip install -e . instead of pip install ..

Python API Usage

from stabilo import Stabilizer 

# Create an instance of the Stabilizer class with default parameters
stabilizer = Stabilizer() 

# Set a reference frame with (optional) mask
stabilizer.set_ref_frame(ref_frame, ref_mask)

# Stabilize any frame with (optional) mask
stabilizer.stabilize(cur_frame, cur_mask)

# Get the stabilized (warped) frame 
stabilized_frame = stabilizer.warp_cur_frame()

# Transform current masks (bounding boxes) if it was provided
stabilized_boxes = stabilizer.transform_cur_boxes()

# Transform any point (pixel coordinates) from the current frame to reference frame
cur_point = np.array([x, y, 1])
ref_point = stabilizer.get_cur_trans_matrix() @ cur_point

Bounding Box Formats

Stabilo supports multiple mask and bounding-box formats:

  • xywh: Axis-aligned boxes [x_center, y_center, width, height]
  • xywha: Oriented bounding boxes [x_center, y_center, width, height, angle_degrees]
  • four: Four corner points [x1, y1, x2, y2, x3, y3, x4, y4] (auto-detects if rotated)
  • polygon: Polygon points as flattened rows [x1, y1, ..., xN, yN] or (N, 2) point arrays
  • circle: Circular masks [x_center, y_center, radius]
import numpy as np

# Example with oriented bounding boxes (OBBs)
obb_boxes = np.array([
    [100, 150, 50, 30, 45],  # Rotated 45 degrees
    [200, 200, 60, 40, 90],  # Rotated 90 degrees
])

stabilizer.set_ref_frame(ref_frame, obb_boxes, box_format='xywha')
stabilizer.stabilize(cur_frame, cur_boxes, box_format='xywha')

# Transform boxes and get result in different format
transformed = stabilizer.transform_cur_boxes(out_box_format='four')

Polygon and Circular Mask Examples

# Polygon mask(s)
polygon_masks = np.array([
    [60, 60, 120, 60, 120, 120, 60, 120],
    [200, 200, 260, 210, 240, 270, 190, 260],
])
stabilizer.set_ref_frame(ref_frame, polygon_masks, box_format='polygon')

# Circular mask(s)
circle_masks = np.array([
    [120, 120, 25],
    [360, 240, 40],
])
stabilizer.stabilize(cur_frame, circle_masks, box_format='circle')

Documentation

For detailed package documentation, including architecture, end-to-end workflows, mask format specifications, and API behavior notes, see:

Utility Scripts

Utility scripts are provided to demonstrate the functionality of the Stabilo package. These scripts can be found in the scripts directory and are briefly documented in the scripts README.

Stabilization Examples

  • stabilize_video.py: Implements video stabilization relative to a reference frame.
  • stabilize_boxes.py: Implements object trajectory stabilization relative to a reference frame.

Threshold Analysis

  • find_threshold_models.py: Computes regression models between detection thresholds and average keypoint counts for BRISK, KAZE, and AKAZE feature detectors.

Citing This Work

If you use Stabilo in your research, software, or product, please cite the following resources appropriately:

  1. Preferred Citation: Please cite the associated article for any use of the Stabilo package, including research, applications, and derivative work:

    @article{fonod2025advanced,
      title = {Advanced computer vision for extracting georeferenced vehicle trajectories from drone imagery},
      author = {Fonod, Robert and Cho, Haechan and Yeo, Hwasoo and Geroliminis, Nikolas},
      journal = {Transportation Research Part C: Emerging Technologies},
      volume = {178},
      pages = {105205},
      year = {2025},
      publisher = {Elsevier},
      doi = {10.1016/j.trc.2025.105205},
      url = {https://doi.org/10.1016/j.trc.2025.105205}
    }
    
  2. Repository Citation: If you reference, modify, or build upon the Stabilo software itself, please also cite the corresponding Zenodo release:

    @software{fonod2026stabilo,
      author = {Fonod, Robert},
      license = {MIT},
      month = jul,
      title = {Stabilo: A Comprehensive Python Library for Video and Trajectory Stabilization with User-Defined Masks},
      url = {https://github.com/rfonod/stabilo},
      doi = {10.5281/zenodo.12117092},
      version = {1.3.0},
      year = {2026}
    }
    

Contributing

Contributions from the community are welcome! If you encounter any issues or have suggestions for improvements, please open a GitHub Issue or submit a pull request.

License

This project is distributed under the MIT License. See the LICENSE file for more 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

stabilo-1.3.0.tar.gz (31.3 kB view details)

Uploaded Source

Built Distribution

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

stabilo-1.3.0-py3-none-any.whl (24.5 kB view details)

Uploaded Python 3

File details

Details for the file stabilo-1.3.0.tar.gz.

File metadata

  • Download URL: stabilo-1.3.0.tar.gz
  • Upload date:
  • Size: 31.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for stabilo-1.3.0.tar.gz
Algorithm Hash digest
SHA256 f01869571d16f499ce2ef7a32a5f33858387257c4803d062e7e7c12a53567533
MD5 49d3e139806468751dca6c757d0d9016
BLAKE2b-256 b489f713a1c74fd561eada730829bf3f2f49a6b977222cdcc1f39799954116ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for stabilo-1.3.0.tar.gz:

Publisher: publish.yml on rfonod/stabilo

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

File details

Details for the file stabilo-1.3.0-py3-none-any.whl.

File metadata

  • Download URL: stabilo-1.3.0-py3-none-any.whl
  • Upload date:
  • Size: 24.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for stabilo-1.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 4fe441a40db09239b0073ac78b8a52dc228723107d5ac04e7e78a79505b935bc
MD5 d0123152f5029f5f2bf2ccf33350d2a0
BLAKE2b-256 5fc6b948051b5c107ab3449d4f0b26a6e77d6333d937d33032bdfac432622451

See more details on using hashes here.

Provenance

The following attestation bundles were made for stabilo-1.3.0-py3-none-any.whl:

Publisher: publish.yml on rfonod/stabilo

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