Top AI Repos — open-source AI, indexed and scored
Top AI Repos tracks AI repositories on GitHub and answers two different questions about each one: is it moving right now, and would you bet a product on it.
Top AI Repos tracks AI repositories on GitHub and answers two different questions about each one: is it moving right now, and would you bet a product on it.
A Python package to stabilize videos using OpenCV
| Date | Stars |
|---|---|
| 2026-07-24 | 773 |
| 2026-07-25 | 773 |
| 2026-07-28 | 773 |
| 2026-07-30 | 773 |
| 2026-08-28 | 774 |
| 2026-09-07 | 775 |
| 2026-09-09 | 776 |
| 2026-09-18 | 777 |
| 2026-09-20 | 777 |
Today
— stars today
This week
+1 stars this week
This month
+4 stars this month
Momentum
0.0
growth rate 0.13%/day
# Python Video Stabilization <img src='https://s3.amazonaws.com/python-vidstab/logo/vidstab_logo_hex.png' width=125 align='right'/> <!-- noop --> [](https://travis-ci.org/AdamSpannbauer/python_video_stab) [](https://codecov.io/gh/AdamSpannbauer/python_video_stab) [](https://codeclimate.com/github/AdamSpannbauer/python_video_stab/maintainability) [](https://pypi.org/project/vidstab/) [](https://github.com/AdamSpannbauer/python_video_stab/commits/master) [](https://pepy.tech/project/vidstab) Python video stabilization using OpenCV. Full [searchable documentation here](https://adamspannbauer.github.io/python_video_stab). This module contains a single class (`VidStab`) used for video stabilization. This class is based on the work presented by Nghia Ho in [SIMPLE VIDEO STABILIZATION USING OPENCV](http://nghiaho.com/?p=2093). The foundation code was found in a comment on Nghia Ho's post by the commenter with username koala. Input | Output :-------------------------------:|:-------------------------:  |  *[Video](https://www.youtube.com/watch?v=9pypPqbV_GM) used with permission from [HappyLiving](https://www.facebook.com/happylivinginfl/)* ## Contents: 1. [Installation](#installation) * [Install `vidstab` without installing OpenCV](#install-vidstab-without-installing-opencv) * [Install vidstab & OpenCV](#install-vidstab-opencv) 2. [Basic Usage](#basic-usage) * [Using from command line](#using-from-command-line) * [Using VidStab class](#using-vidstab-class) 3. [Advanced Usage](#advanced-usage) * [Plotting frame to frame transformations](#plotting-frame-to-frame-transformations) * [Using borders](#using-borders) * [Using Frame Layering](#using-frame-layering) * [Stabilizing a frame at a time](#stabilizing-a-frame-at-a-time) * [Working with live video](#working-with-live-video) * [Transform File Writing & Reading](#transform-file-writing--reading) ## Installation > ```diff > + Please report issues if you install/try to install and run into problems! > ``` ### Install `vidstab` without installing OpenCV If you've already built OpenCV with python bindings on your machine it is recommended to install `vidstab` without installing the pypi versions of OpenCV. The `opencv-python` python module can cause issues if you've already built OpenCV from source in your environment. The below commands will install `vidstab` without OpenCV included. #### From PyPi ```bash pip install vidstab ``` #### From GitHub ```bash pip install git+https://github.com/AdamSpannbauer/python_video_stab.git ``` ### Install `vidstab` & OpenCV If you don't have OpenCV installed already there are a couple options. 1. You can build OpenCV using one of the great online tutorials from [PyImageSearch](https://www.pyimagesearch.com/), [LearnOpenCV](https://www.learnopencv.com/), or [OpenCV](https://docs.opencv.org/3.0-beta/doc/py_tutorials/py_setup/py_table_of_contents_setup/py_table_of_contents_setup.html#py-table-of-content-setup) themselves. When building from source you have more options (e.g. [platform optimization](https://www.pyimagesearch.com/2017/10/09/optimizing-opencv-on-the-raspberry-pi/)), but more responsibility. Once installed you can use the pip install command shown above. 2. You can install a pre-built distribution of OpenCV from pypi as a dependency for `vidstab` (see
Excerpt of 15,456 characters
Read on GitHub341
1
Would you bet a product on this? Bounded 0–100 and slow moving.
matched fp:4a148d8586f35ed3, topic:computer-vision, topic:opencv