pyimof

Python package for optical flow estimation


Keywords
image-processing, optical-flow, python
License
GPL-3.0
Install
pip install pyimof==1.0.0

Documentation

Documentation Status

Pyimof (for Python image optical flow) is a pure python package for dense optical flow estimation. Please visit the documentation and the gallery for more details.

Installation

pip install pyimof

Quick Example

Using Pyimov is as easy as

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