Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rfezzani/pyimof
Python package for optical flow estimation
https://github.com/rfezzani/pyimof
image-processing optical-flow python
Last synced: 3 months ago
JSON representation
Python package for optical flow estimation
- Host: GitHub
- URL: https://github.com/rfezzani/pyimof
- Owner: rfezzani
- License: gpl-3.0
- Created: 2019-04-26T18:01:10.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-12-25T06:09:22.000Z (about 2 years ago)
- Last Synced: 2024-10-10T19:20:38.822Z (3 months ago)
- Topics: image-processing, optical-flow, python
- Language: Python
- Size: 7.94 MB
- Stars: 14
- Watchers: 2
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
[![PyPI version](https://badge.fury.io/py/pyimof.svg)](https://badge.fury.io/py/pyimof)
[![Documentation Status](https://readthedocs.org/projects/pyimof/badge/?version=latest)](https://pyimof.readthedocs.io/en/latest/?badge=latest)
[![License: GPL v3](https://img.shields.io/badge/License-GPLv3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0)Pyimof (for **Py**thon **im**age **o**ptical **f**low) is a pure
python package for dense [optical
flow](https://en.wikipedia.org/wiki/Optical_flow) estimation. Please
visit the [documentation](https://pyimof.readthedocs.io/en/latest/)
and the
[gallery](https://pyimof.readthedocs.io/en/latest/examples/index.html)
for more details.## Installation
```
pip install pyimof
```## Quick Example
Using Pyimov is as easy as
```python
from matplotlib import pyplot as plt
import pyimof
I0, I1 = pyimof.data.hydrangea()
u, v = pyimof.solvers.tvl1(I0, I1)
pyimof.display.plot(u, v)
plt.show()
```to obtain
![Hydrangea](doc/source/_static/hydrangea.png)