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

PyPI Version GitHub Release Python License DOI arXiv Development Status PyPi - Total Downloads PyPI - Downloads per Month

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 GIF

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.
  • 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.
  • 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
  • Unit Tests: Comprehensive unit test suite to ensure package stability and reliability.
  • Different Mask Types: Inclusion of additional mask types (e.g., polygonal, circular) for enhanced precision in stabilization.
  • GPU Acceleration: Integration of GPU acceleration to improve processing speed.
  • Documentation: Detailed documentation covering the package’s functionality and usage.

Installation

It is recommended to create and activate a Python Virtual Environment (Python >= 3.9) first using e.g., Miniconda3:

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

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

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 here.

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 this project in your academic research, commercial products, or any published material, please acknowledge its use by citing it.

  1. Preferred Citation: For research-related references, please cite the related paper once it is formally published. A preprint is currently available on arXiv:
@misc{fonod2025advanced,
  title={Advanced computer vision for extracting georeferenced vehicle trajectories from drone imagery}, 
  author={Robert Fonod and Haechan Cho and Hwasoo Yeo and Nikolas Geroliminis},
  year={2025},
  eprint={2411.02136},
  archivePrefix={arXiv},
  primaryClass={cs.CV},
  url={https://arxiv.org/abs/2411.02136},
  doi={https://doi.org/10.48550/arXiv.2411.02136}
}
  1. Repository Citation: For direct use of the stabilo repository, please cite the software release version on Zenodo. You may refer to the DOI badge above for the correct version or use the BibTeX below:
@software{fonod2025stabilo,
  author = {Fonod, Robert},
  license = {MIT},
  month = apr,
  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.0.1},
  year = {2025}
}

Contributing

Contributions 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.0.1.tar.gz (21.6 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.0.1-py3-none-any.whl (19.5 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: stabilo-1.0.1.tar.gz
  • Upload date:
  • Size: 21.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.20

File hashes

Hashes for stabilo-1.0.1.tar.gz
Algorithm Hash digest
SHA256 9c5beb4c179b2135b81346b1878128104032c36391a7d7a4fcdf7eb73ddb8b9a
MD5 3de260ed92f9dfda77ca5486dec3395d
BLAKE2b-256 24290a463db56377eaddbb91e9b2480bcfc217b30722e9d730cff14e6038e884

See more details on using hashes here.

File details

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

File metadata

  • Download URL: stabilo-1.0.1-py3-none-any.whl
  • Upload date:
  • Size: 19.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.20

File hashes

Hashes for stabilo-1.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 74ea992c2794fead80c53e77e39aea66d46b35aab67828c804543250e0ca0905
MD5 87f6655ea39f5e765a1ae2896f7349a1
BLAKE2b-256 3b708c7e5389cd18dcd78955b27aac24cee951f8d310be59ab6c475f263877a9

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