Add a short description here!
Project description
===========
farneback3d
===========
.. image:: https://travis-ci.org/theHamsta/farnback3d.svg?branch=master
:target: https://travis-ci.org/theHamsta/farnback3d
A CUDA implementation of the Farneback optical flow algorithm [1] for the calculation of dense volumetric flow fields. Since this algorithm is based on the approximation of the signal by polynomial expansion it is especial suited for the motion estimation in smooth signals without clear edges.
To know more about the implementation have a look on `this OpenCV class: <https://docs.opencv.org/3.3.0/de/d9e/classcv_1_1FarnebackOpticalFlow.html>`_ that was used as inspiration for this implementation.
Python interface
===========
The project uses `pycuda <https://github.com/inducer/pycuda`_ to provide a pure-python package available on PyPi::
pip install farneback3d
Usage::
import farneback3d
... # create some numpy volumes vol0 and vol1 (can also be pycuda GPUArrays)
# set parameters for optical flow
optflow = farneback3d.Farneback(
levels=5,
num_iterations=5,
poly_n=5
)
# calculate frame-to-frame flow between vol0 and vol1
flow = optflow.calc_flow(vol0, vol1)
C++ interface
===========
Future plans
===========
The current implementation uses a naive approach to perform the necessary convolutions.
The algorithm could be sped up drastically by performing separable convolutions along each coordinate axis.
[1] Farnebäck, Gunnar. "Two-frame motion estimation based on polynomial expansion." Scandinavian conference on Image analysis. Springer, Berlin, Heidelberg, 2003.
farneback3d
===========
.. image:: https://travis-ci.org/theHamsta/farnback3d.svg?branch=master
:target: https://travis-ci.org/theHamsta/farnback3d
A CUDA implementation of the Farneback optical flow algorithm [1] for the calculation of dense volumetric flow fields. Since this algorithm is based on the approximation of the signal by polynomial expansion it is especial suited for the motion estimation in smooth signals without clear edges.
To know more about the implementation have a look on `this OpenCV class: <https://docs.opencv.org/3.3.0/de/d9e/classcv_1_1FarnebackOpticalFlow.html>`_ that was used as inspiration for this implementation.
Python interface
===========
The project uses `pycuda <https://github.com/inducer/pycuda`_ to provide a pure-python package available on PyPi::
pip install farneback3d
Usage::
import farneback3d
... # create some numpy volumes vol0 and vol1 (can also be pycuda GPUArrays)
# set parameters for optical flow
optflow = farneback3d.Farneback(
levels=5,
num_iterations=5,
poly_n=5
)
# calculate frame-to-frame flow between vol0 and vol1
flow = optflow.calc_flow(vol0, vol1)
C++ interface
===========
Future plans
===========
The current implementation uses a naive approach to perform the necessary convolutions.
The algorithm could be sped up drastically by performing separable convolutions along each coordinate axis.
[1] Farnebäck, Gunnar. "Two-frame motion estimation based on polynomial expansion." Scandinavian conference on Image analysis. Springer, Berlin, Heidelberg, 2003.
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
farneback3d-0.0.1.tar.gz
(31.5 kB
view details)
File details
Details for the file farneback3d-0.0.1.tar.gz
.
File metadata
- Download URL: farneback3d-0.0.1.tar.gz
- Upload date:
- Size: 31.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | aecf7a2fc0e42082a3f72cdb0b3026a602f77c65569de54de2a8bf4ce4fbafb7 |
|
MD5 | 2d1908259e535369e5df1c6629b8aa19 |
|
BLAKE2b-256 | 3ef9629feb2edfe8cd8324e4117d0d318a533adecbc36b6df39183bf1874aefc |