pyflow icon indicating copy to clipboard operation
pyflow copied to clipboard

Fast, accurate and easy to run dense optical flow with python wrapper

Results 24 pyflow issues
Sort by recently updated
recently updated
newest added

Feeding 2 images of resolution 240x320 is generating a .npy array of shape (320, 240, 2) containing positive and negative values. I want to feed these as features for an...

when I use the coarse2fine_flow interface, I always get this error. Do you know how to fix this? Thanks.

Using OpenMP, I multithreaded functions that were major bottlenecks in the optical flow computation. Good news: Computation time may be reduced by up to 50%. Bad news: The performance scales...

When I install pyflow in ubuntu, it happen (pytorch100) hym@VIPA109:~/pycharm_remote/pyflow-master$ python setup.py build_ext -i Compiling pyflow.pyx because it changed. [1/1] Cythonizing pyflow.pyx /home/disk1/hym/anaconda3/envs/pytorch100/lib/python3.7/site-packages/Cython/Compiler/Main.py:367: FutureWarning: Cython directive 'language_level' not set, using...

I am running on windows 10. This error comes when running: python setup.py build_ext -i error: Unable to find vcvarsall.bat

I was trying to compile this on a Windows machine. However I got this error: ``` C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\BIN\amd64\link.exe /DLL /nologo /INCREMENTAL:NO /LIBPATH:C:\Python27\libs /LIBPATH:C:\Python27\PCbuild\amd64 /LIBPATH:C:\Python27\PC\VS9.0\amd64 /EXPORT:initpyflow build\temp.win-amd64-2.7\Release\pyflow.obj...

Hello, I have 2 questions: 1, How to install pyflow into root, so we can directly use it? 2, I assume that we calculate the optical flow using current frame...

Hi there, I modified the demo code to feed a video and extract the flow between 2 consecutive frames. while the first result seems to be good, starting the next...

Hi, I'm just wondering if you think I could modify this to calculate the optical flow for 2 images(As it currently does) but warp a third image of my choosing,...