| Description |
This code implements two variations of the paper
"High accuracy optic flow using a theory for warping" presented at ECCV 2004 by Dr. Thomas Brox.
Its variants appeared in "Particle Video"
presented at CVPR 2006 by Dr. Peter Sand.
The files optical_flow_brox.m and
optical_flow_sand.m are the files you need to run.
optical_flow_brox.m implements the traditional algorithm. Just replace the first lines where images are read, with your image, and start the process.
optical_flow_sand.m implements a variant presented in CVPR 2006. Again just replace the lines "img1 = imread('...')" and "img2 = imread('...')" with your images and the rest is automatic.
The variable num_levels controls the number of images in the laplacian pyramid to be constructed. Change it to suit your convenience.
The way to tweak / use the code is described in the documentation pdf that is attached with the code. It can also be accessed from
http://perception.inrialpes.fr/~chari/myweb/Software/
In order to tweak the code, however, you need to read the two papers... |
| Other Files |
Flow/0144.ppm, Flow/0160.ppm, Flow/brox.zip, Flow/brox_zip/computePsidashFS_brox.m, Flow/brox_zip/constructMatrix_brox.m, Flow/brox_zip/gaussDeriv.m, Flow/brox_zip/gaussianRescaling.m, Flow/brox_zip/gaussianSmooth.m, Flow/brox_zip/image_warp.m, Flow/brox_zip/imgGrad.m, Flow/brox_zip/mywarp_rgb.m, Flow/brox_zip/optic_flow_brox.m, Flow/brox_zip/psiDerivative.m, Flow/brox_zip/resolutionProcess_brox.m, Flow/brox_zip/sor.m, Flow/brox_zip/split.m, Flow/car0.png, Flow/car1.png, Flow/flow_documentation.pdf, Flow/sand.zip, Flow/sand_zip/channels_new.m, Flow/sand_zip/computePsidashFS_sand.m, Flow/sand_zip/constructMatrix_sand.m, Flow/sand_zip/gaussDeriv.m, Flow/sand_zip/gaussianRescaling.m, Flow/sand_zip/gaussianSmooth.m, Flow/sand_zip/getalphaImg.m, Flow/sand_zip/image_warp.m, Flow/sand_zip/imgGrad.m, Flow/sand_zip/mywarp_rgb.m, Flow/sand_zip/optic_flow_sand.m, Flow/sand_zip/psiDerivative.m, Flow/sand_zip/resolutionProcess_sand.m, Flow/sand_zip/sor.m, Flow/sand_zip/split.m, Flow/Thumbs.db, license.txt
|