epic-flow

modified in this repo:

A cmake install to build the epic library. To make:

mkdir build
cd build
cmake ..
make -j2

the match input is changed into optical flow file ".flo"

EpicFlow, v1.00 (Revaud)

Our code is mentioned only for scientific or personal use. Please contact us for commercial use.

Compiling

Simply type 'make' and the code must compile. Libraries libpng, libjpg, libm and liblapack are required. You may have compilation due to lapack, eventually add -L to LDFLAGS in Makefile. If you have compilation issue, probably due to lapack, add -L to LDFLAGS in Makefile or use the static version: epicflow-static. The program was only tested under a 64-bit Linux distribution. We do not give any support for compilation issues or other OS.

Prerequisities

Given two images, you need first to compute edges and matches before running EpicFlow. You can download the code from these links.

Note that we initially use the first version of SED, whose results are computed using the corresponding model 'modelFinal.mat'. More recent versions give similar performance.

Usage

EpicFlow creates a .flo file in an usual .flo format (for instance, see Middlebury dataset for code reading/displaying it).

Type "./epicflow" for list of available options. An example usage is given here (set paths between <>).

matlab -nodesktop -nojvm -r "addpath(<path_to_sed>); addpath(genpath(<path_to_piotr_toolbox>)); load('modelFinal.mat'); I = imread(); if size(I,3)==1, I = cat(3,I,I,I); end; edges = edgesDetect(I, model); fid=fopen(,'wb'); fwrite(fid,transpose(edges),'single'); fclose(fid); exit"

<path_to_deepmatching>/deepmatching -png_settings -improved_settings -out

./epicflow [options]

Citation

If you use our code, please cite our paper:

@inproceedings{revaud:hal-01142656, TITLE = {{EpicFlow: Edge-Preserving Interpolation of Correspondences for Optical Flow}}, AUTHOR = {Revaud, Jerome and Weinzaepfel, Philippe and Harchaoui, Zaid and Schmid, Cordelia}, BOOKTITLE = {{Computer Vision and Pattern Recognition}}, YEAR = {2015}, }

History

Dec 2014: v1.00

LICENCE CONDITIONS

Copyright (C) 2014 Philippe Weinzaepfel

This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/.