├── CMakeLists.txt ├── LICENSE ├── README.md ├── briefmatch.cpp ├── briefmatch.h ├── config.h.in ├── data └── RubberWhale │ ├── flow10.flo │ ├── frame07.png │ ├── frame08.png │ ├── frame09.png │ ├── frame10.png │ ├── frame11.png │ ├── frame12.png │ ├── frame13.png │ └── frame14.png ├── kernels ├── briefmatch_cuda.cu ├── briefmatch_cuda.h ├── util_cuda.cu └── util_cuda.h ├── main.cpp ├── of_pipeline.cpp ├── of_pipeline.h └── util ├── arg_parser.cpp ├── arg_parser.h ├── colorcode.cpp ├── colorcode.h ├── flowIO.cpp ├── flowIO.h └── imageLib ├── Convert.cpp ├── Convert.h ├── Convolve.cpp ├── Convolve.h ├── Copyright.h ├── Error.h ├── Image.cpp ├── Image.h ├── ImageIO.cpp ├── ImageIO.h ├── ImageIOpng.cpp ├── README.txt ├── RefCntMem.cpp ├── RefCntMem.h └── imageLib.h /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrieleilertsen/briefmatch/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrieleilertsen/briefmatch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrieleilertsen/briefmatch/HEAD/README.md -------------------------------------------------------------------------------- /briefmatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrieleilertsen/briefmatch/HEAD/briefmatch.cpp -------------------------------------------------------------------------------- /briefmatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrieleilertsen/briefmatch/HEAD/briefmatch.h -------------------------------------------------------------------------------- /config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrieleilertsen/briefmatch/HEAD/config.h.in -------------------------------------------------------------------------------- /data/RubberWhale/flow10.flo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrieleilertsen/briefmatch/HEAD/data/RubberWhale/flow10.flo -------------------------------------------------------------------------------- /data/RubberWhale/frame07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrieleilertsen/briefmatch/HEAD/data/RubberWhale/frame07.png -------------------------------------------------------------------------------- /data/RubberWhale/frame08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrieleilertsen/briefmatch/HEAD/data/RubberWhale/frame08.png -------------------------------------------------------------------------------- /data/RubberWhale/frame09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrieleilertsen/briefmatch/HEAD/data/RubberWhale/frame09.png -------------------------------------------------------------------------------- /data/RubberWhale/frame10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrieleilertsen/briefmatch/HEAD/data/RubberWhale/frame10.png -------------------------------------------------------------------------------- /data/RubberWhale/frame11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrieleilertsen/briefmatch/HEAD/data/RubberWhale/frame11.png -------------------------------------------------------------------------------- /data/RubberWhale/frame12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrieleilertsen/briefmatch/HEAD/data/RubberWhale/frame12.png -------------------------------------------------------------------------------- /data/RubberWhale/frame13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrieleilertsen/briefmatch/HEAD/data/RubberWhale/frame13.png -------------------------------------------------------------------------------- /data/RubberWhale/frame14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrieleilertsen/briefmatch/HEAD/data/RubberWhale/frame14.png -------------------------------------------------------------------------------- /kernels/briefmatch_cuda.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrieleilertsen/briefmatch/HEAD/kernels/briefmatch_cuda.cu -------------------------------------------------------------------------------- /kernels/briefmatch_cuda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrieleilertsen/briefmatch/HEAD/kernels/briefmatch_cuda.h -------------------------------------------------------------------------------- /kernels/util_cuda.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrieleilertsen/briefmatch/HEAD/kernels/util_cuda.cu -------------------------------------------------------------------------------- /kernels/util_cuda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrieleilertsen/briefmatch/HEAD/kernels/util_cuda.h -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrieleilertsen/briefmatch/HEAD/main.cpp -------------------------------------------------------------------------------- /of_pipeline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrieleilertsen/briefmatch/HEAD/of_pipeline.cpp -------------------------------------------------------------------------------- /of_pipeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrieleilertsen/briefmatch/HEAD/of_pipeline.h -------------------------------------------------------------------------------- /util/arg_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrieleilertsen/briefmatch/HEAD/util/arg_parser.cpp -------------------------------------------------------------------------------- /util/arg_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrieleilertsen/briefmatch/HEAD/util/arg_parser.h -------------------------------------------------------------------------------- /util/colorcode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrieleilertsen/briefmatch/HEAD/util/colorcode.cpp -------------------------------------------------------------------------------- /util/colorcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrieleilertsen/briefmatch/HEAD/util/colorcode.h -------------------------------------------------------------------------------- /util/flowIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrieleilertsen/briefmatch/HEAD/util/flowIO.cpp -------------------------------------------------------------------------------- /util/flowIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrieleilertsen/briefmatch/HEAD/util/flowIO.h -------------------------------------------------------------------------------- /util/imageLib/Convert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrieleilertsen/briefmatch/HEAD/util/imageLib/Convert.cpp -------------------------------------------------------------------------------- /util/imageLib/Convert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrieleilertsen/briefmatch/HEAD/util/imageLib/Convert.h -------------------------------------------------------------------------------- /util/imageLib/Convolve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrieleilertsen/briefmatch/HEAD/util/imageLib/Convolve.cpp -------------------------------------------------------------------------------- /util/imageLib/Convolve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrieleilertsen/briefmatch/HEAD/util/imageLib/Convolve.h -------------------------------------------------------------------------------- /util/imageLib/Copyright.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrieleilertsen/briefmatch/HEAD/util/imageLib/Copyright.h -------------------------------------------------------------------------------- /util/imageLib/Error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrieleilertsen/briefmatch/HEAD/util/imageLib/Error.h -------------------------------------------------------------------------------- /util/imageLib/Image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrieleilertsen/briefmatch/HEAD/util/imageLib/Image.cpp -------------------------------------------------------------------------------- /util/imageLib/Image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrieleilertsen/briefmatch/HEAD/util/imageLib/Image.h -------------------------------------------------------------------------------- /util/imageLib/ImageIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrieleilertsen/briefmatch/HEAD/util/imageLib/ImageIO.cpp -------------------------------------------------------------------------------- /util/imageLib/ImageIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrieleilertsen/briefmatch/HEAD/util/imageLib/ImageIO.h -------------------------------------------------------------------------------- /util/imageLib/ImageIOpng.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrieleilertsen/briefmatch/HEAD/util/imageLib/ImageIOpng.cpp -------------------------------------------------------------------------------- /util/imageLib/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrieleilertsen/briefmatch/HEAD/util/imageLib/README.txt -------------------------------------------------------------------------------- /util/imageLib/RefCntMem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrieleilertsen/briefmatch/HEAD/util/imageLib/RefCntMem.cpp -------------------------------------------------------------------------------- /util/imageLib/RefCntMem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrieleilertsen/briefmatch/HEAD/util/imageLib/RefCntMem.h -------------------------------------------------------------------------------- /util/imageLib/imageLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrieleilertsen/briefmatch/HEAD/util/imageLib/imageLib.h --------------------------------------------------------------------------------