Skip to content
forked from rfezzani/pyimof

Python package for optical flow estimation

License

Notifications You must be signed in to change notification settings

sjerdmann/pyimof

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

84 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PyPI version Documentation Status License: GPL v3

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 Pyimof 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

About

Python package for optical flow estimation

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%