├── README.md ├── dense_flow ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── README.md ├── build_of.py ├── cmake │ └── Modules │ │ └── FindLibZip.cmake ├── include │ ├── CLUE │ │ ├── .atom-build.json │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CMakeLists.txt │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── appveyor.yml │ │ ├── doc │ │ │ ├── Makefile │ │ │ └── source │ │ │ │ ├── array_view.rst │ │ │ │ ├── concurrent_counter.rst │ │ │ │ ├── concurrent_queue.rst │ │ │ │ ├── conf.py │ │ │ │ ├── index.rst │ │ │ │ ├── meta.rst │ │ │ │ ├── meta_seq.rst │ │ │ │ ├── misc.rst │ │ │ │ ├── optional.rst │ │ │ │ ├── predicates.rst │ │ │ │ ├── reindexed_view.rst │ │ │ │ ├── sformat.rst │ │ │ │ ├── shared_mutex.rst │ │ │ │ ├── stemplate.rst │ │ │ │ ├── string_view.rst │ │ │ │ ├── stringex.rst │ │ │ │ ├── textio.rst │ │ │ │ ├── thread_pool.rst │ │ │ │ ├── timing.rst │ │ │ │ ├── type_name.rst │ │ │ │ ├── type_traits.rst │ │ │ │ └── value_range.rst │ │ ├── examples │ │ │ ├── ex_cccounter.cpp │ │ │ ├── ex_ccqueue.cpp │ │ │ ├── ex_stopwatch.cpp │ │ │ ├── ex_strings.cpp │ │ │ ├── ex_threadpool.cpp │ │ │ └── ex_timing.cpp │ │ ├── include │ │ │ └── clue │ │ │ │ ├── array_view.hpp │ │ │ │ ├── clue.hpp │ │ │ │ ├── common.hpp │ │ │ │ ├── concurrent_counter.hpp │ │ │ │ ├── concurrent_queue.hpp │ │ │ │ ├── config.hpp │ │ │ │ ├── container_common.hpp │ │ │ │ ├── memory.hpp │ │ │ │ ├── meta.hpp │ │ │ │ ├── meta_seq.hpp │ │ │ │ ├── misc.hpp │ │ │ │ ├── optional.hpp │ │ │ │ ├── predicates.hpp │ │ │ │ ├── preproc.hpp │ │ │ │ ├── reindexed_view.hpp │ │ │ │ ├── sformat.hpp │ │ │ │ ├── shared_mutex.hpp │ │ │ │ ├── stemplate.hpp │ │ │ │ ├── string_view.hpp │ │ │ │ ├── stringex.hpp │ │ │ │ ├── textio.hpp │ │ │ │ ├── thread_pool.hpp │ │ │ │ ├── timing.hpp │ │ │ │ ├── type_name.hpp │ │ │ │ ├── type_traits.hpp │ │ │ │ └── value_range.hpp │ │ └── tests │ │ │ ├── test_array_view.cpp │ │ │ ├── test_concurrent_counter.cpp │ │ │ ├── test_concurrent_queue.cpp │ │ │ ├── test_include_all.cpp │ │ │ ├── test_meta.cpp │ │ │ ├── test_meta_seq.cpp │ │ │ ├── test_misc.cpp │ │ │ ├── test_optional.cpp │ │ │ ├── test_predicates.cpp │ │ │ ├── test_reindexed_view.cpp │ │ │ ├── test_sformat.cpp │ │ │ ├── test_shared_mutex.cpp │ │ │ ├── test_stemplate.cpp │ │ │ ├── test_string_view.cpp │ │ │ ├── test_stringex.cpp │ │ │ ├── test_textio.cpp │ │ │ ├── test_thread_pool.cpp │ │ │ ├── test_type_name.cpp │ │ │ └── test_value_range.cpp │ ├── common.h │ ├── dense_flow.h │ ├── easylogging++ │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENCE │ │ ├── README.md │ │ ├── doc │ │ │ ├── RELEASE-NOTES-v9.00 │ │ │ ├── RELEASE-NOTES-v9.01 │ │ │ ├── RELEASE-NOTES-v9.02 │ │ │ ├── RELEASE-NOTES-v9.03 │ │ │ ├── RELEASE-NOTES-v9.04 │ │ │ ├── RELEASE-NOTES-v9.05 │ │ │ ├── RELEASE-NOTES-v9.06 │ │ │ ├── RELEASE-NOTES-v9.07 │ │ │ ├── RELEASE-NOTES-v9.08 │ │ │ ├── RELEASE-NOTES-v9.09 │ │ │ ├── RELEASE-NOTES-v9.10 │ │ │ ├── RELEASE-NOTES-v9.11 │ │ │ ├── RELEASE-NOTES-v9.12 │ │ │ ├── RELEASE-NOTES-v9.13 │ │ │ ├── RELEASE-NOTES-v9.14 │ │ │ ├── RELEASE-NOTES-v9.15 │ │ │ ├── RELEASE-NOTES-v9.16 │ │ │ ├── RELEASE-NOTES-v9.17 │ │ │ ├── RELEASE-NOTES-v9.18 │ │ │ ├── RELEASE-NOTES-v9.19 │ │ │ ├── RELEASE-NOTES-v9.20 │ │ │ ├── RELEASE-NOTES-v9.21 │ │ │ ├── RELEASE-NOTES-v9.22 │ │ │ ├── RELEASE-NOTES-v9.23 │ │ │ ├── RELEASE-NOTES-v9.24 │ │ │ ├── RELEASE-NOTES-v9.25 │ │ │ ├── RELEASE-NOTES-v9.26 │ │ │ ├── RELEASE-NOTES-v9.27 │ │ │ ├── RELEASE-NOTES-v9.28 │ │ │ ├── RELEASE-NOTES-v9.29 │ │ │ ├── RELEASE-NOTES-v9.30 │ │ │ ├── RELEASE-NOTES-v9.31 │ │ │ ├── RELEASE-NOTES-v9.32 │ │ │ ├── RELEASE-NOTES-v9.33 │ │ │ ├── RELEASE-NOTES-v9.34 │ │ │ ├── RELEASE-NOTES-v9.35 │ │ │ ├── RELEASE-NOTES-v9.36 │ │ │ ├── RELEASE-NOTES-v9.37 │ │ │ ├── RELEASE-NOTES-v9.38 │ │ │ ├── RELEASE-NOTES-v9.39 │ │ │ ├── RELEASE-NOTES-v9.40 │ │ │ ├── RELEASE-NOTES-v9.41 │ │ │ ├── RELEASE-NOTES-v9.42 │ │ │ ├── RELEASE-NOTES-v9.43 │ │ │ ├── RELEASE-NOTES-v9.44 │ │ │ ├── RELEASE-NOTES-v9.45 │ │ │ ├── RELEASE-NOTES-v9.46 │ │ │ ├── RELEASE-NOTES-v9.47 │ │ │ ├── RELEASE-NOTES-v9.48 │ │ │ ├── RELEASE-NOTES-v9.49 │ │ │ ├── RELEASE-NOTES-v9.50 │ │ │ ├── RELEASE-NOTES-v9.51 │ │ │ ├── RELEASE-NOTES-v9.52 │ │ │ ├── RELEASE-NOTES-v9.53 │ │ │ ├── RELEASE-NOTES-v9.54 │ │ │ ├── RELEASE-NOTES-v9.55 │ │ │ ├── RELEASE-NOTES-v9.56 │ │ │ ├── RELEASE-NOTES-v9.57 │ │ │ ├── RELEASE-NOTES-v9.58 │ │ │ ├── RELEASE-NOTES-v9.59 │ │ │ ├── RELEASE-NOTES-v9.60 │ │ │ ├── RELEASE-NOTES-v9.61 │ │ │ ├── RELEASE-NOTES-v9.62 │ │ │ ├── RELEASE-NOTES-v9.63 │ │ │ ├── RELEASE-NOTES-v9.64 │ │ │ ├── RELEASE-NOTES-v9.65 │ │ │ ├── RELEASE-NOTES-v9.66 │ │ │ ├── RELEASE-NOTES-v9.67 │ │ │ ├── RELEASE-NOTES-v9.68 │ │ │ ├── RELEASE-NOTES-v9.69 │ │ │ ├── RELEASE-NOTES-v9.70 │ │ │ ├── RELEASE-NOTES-v9.71 │ │ │ ├── RELEASE-NOTES-v9.72 │ │ │ ├── RELEASE-NOTES-v9.73 │ │ │ ├── RELEASE-NOTES-v9.74 │ │ │ ├── RELEASE-NOTES-v9.75 │ │ │ ├── RELEASE-NOTES-v9.76 │ │ │ ├── RELEASE-NOTES-v9.77 │ │ │ ├── RELEASE-NOTES-v9.78 │ │ │ ├── RELEASE-NOTES-v9.79 │ │ │ └── RELEASE-NOTES-v9.80 │ │ ├── samples │ │ │ ├── .gitignore │ │ │ ├── API │ │ │ │ ├── .gitignore │ │ │ │ ├── build_all.sh │ │ │ │ ├── compile.sh │ │ │ │ ├── logbuilder.cpp │ │ │ │ ├── run.sh │ │ │ │ └── run_all.sh │ │ │ ├── Dev-C++ │ │ │ │ ├── .gitignore │ │ │ │ ├── HelloDevC++.dev │ │ │ │ ├── HelloDevC++.layout │ │ │ │ └── main.cpp │ │ │ ├── MinGW │ │ │ │ ├── .gitignore │ │ │ │ ├── compile.bat │ │ │ │ ├── easylogging++.h │ │ │ │ └── prog.cpp │ │ │ ├── OpenGL │ │ │ │ ├── .gitignore │ │ │ │ ├── Cube │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── LICENCE │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── imageloader.cpp │ │ │ │ │ ├── imageloader.h │ │ │ │ │ ├── main.cpp │ │ │ │ │ └── vtr.bmp │ │ │ │ ├── basic.cpp │ │ │ │ ├── build_all.sh │ │ │ │ ├── compile.sh │ │ │ │ ├── easylogging++.h │ │ │ │ ├── run.sh │ │ │ │ └── run_all.sh │ │ │ ├── Qt │ │ │ │ ├── .gitignore │ │ │ │ ├── basic │ │ │ │ │ ├── README.md │ │ │ │ │ ├── easylogging++.h │ │ │ │ │ ├── main.cpp │ │ │ │ │ ├── mythread.h │ │ │ │ │ ├── qt-sample.pro │ │ │ │ │ └── test_conf.conf │ │ │ │ ├── fast-dictionary │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── easylogging++.h │ │ │ │ │ ├── fast-dictionary.pro │ │ │ │ │ ├── listwithsearch.cc │ │ │ │ │ ├── listwithsearch.hh │ │ │ │ │ ├── main.cc │ │ │ │ │ ├── mainwindow.cc │ │ │ │ │ ├── mainwindow.hh │ │ │ │ │ ├── mainwindow.ui │ │ │ │ │ ├── moc_listwithsearch.cpp │ │ │ │ │ ├── moc_mainwindow.cpp │ │ │ │ │ ├── ui_mainwindow.h │ │ │ │ │ └── words.txt │ │ │ │ ├── file-splitter-joiner │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── README.md │ │ │ │ │ ├── about.cpp │ │ │ │ │ ├── about.h │ │ │ │ │ ├── about.ui │ │ │ │ │ ├── addsplittedfiledialog.cpp │ │ │ │ │ ├── addsplittedfiledialog.h │ │ │ │ │ ├── addsplittedfiledialog.ui │ │ │ │ │ ├── easylogging++.h │ │ │ │ │ ├── file-splitter-and-joiner.pro │ │ │ │ │ ├── joinercore.cpp │ │ │ │ │ ├── joinercore.h │ │ │ │ │ ├── joinerwidget.cpp │ │ │ │ │ ├── joinerwidget.h │ │ │ │ │ ├── joinerwidget.ui │ │ │ │ │ ├── main.cpp │ │ │ │ │ ├── mainwindow.cpp │ │ │ │ │ ├── mainwindow.h │ │ │ │ │ ├── partprocessor.cpp │ │ │ │ │ ├── partprocessor.h │ │ │ │ │ ├── splitablefiledelegate.cpp │ │ │ │ │ ├── splitablefiledelegate.h │ │ │ │ │ ├── splittercore.cpp │ │ │ │ │ ├── splittercore.h │ │ │ │ │ ├── splitterwidget.cpp │ │ │ │ │ ├── splitterwidget.h │ │ │ │ │ └── splitterwidget.ui │ │ │ │ └── shared-lib │ │ │ │ │ ├── README.md │ │ │ │ │ ├── myapp │ │ │ │ │ ├── easylogging++.h │ │ │ │ │ ├── main.cc │ │ │ │ │ └── myapp.pro │ │ │ │ │ └── mylib │ │ │ │ │ ├── easylogging++.h │ │ │ │ │ ├── mylib.cc │ │ │ │ │ ├── mylib.hh │ │ │ │ │ ├── mylib.pro │ │ │ │ │ └── mylib_global.hh │ │ │ ├── STL │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis_build.sh │ │ │ │ ├── all-logs.cpp │ │ │ │ ├── autospace.cpp │ │ │ │ ├── build_all.sh │ │ │ │ ├── check-macros.cpp │ │ │ │ ├── compile.sh │ │ │ │ ├── conditional.cpp │ │ │ │ ├── configurator.cpp │ │ │ │ ├── containers.cpp │ │ │ │ ├── crash.cpp │ │ │ │ ├── custom-class.cpp │ │ │ │ ├── custom-crash-handler.cpp │ │ │ │ ├── custom-format-spec.cpp │ │ │ │ ├── custom-performance-output.cpp │ │ │ │ ├── default-configurations.cpp │ │ │ │ ├── default-log-file-from-arg.cpp │ │ │ │ ├── del-logger.cpp │ │ │ │ ├── easylogging++.h │ │ │ │ ├── flags.cpp │ │ │ │ ├── global-configuration.cpp │ │ │ │ ├── helpers.cpp │ │ │ │ ├── locale.cpp │ │ │ │ ├── log-dispatch-callback.cpp │ │ │ │ ├── loggable.cpp │ │ │ │ ├── logger-log-functions.cpp │ │ │ │ ├── make-loggable.cpp │ │ │ │ ├── manipulators.cpp │ │ │ │ ├── multiple-loggers.cpp │ │ │ │ ├── no-default-log-file.cpp │ │ │ │ ├── occasional.cpp │ │ │ │ ├── plog.cpp │ │ │ │ ├── post-performance-tracking-handler.cpp │ │ │ │ ├── pthread.cpp │ │ │ │ ├── roll-out.cpp │ │ │ │ ├── run.sh │ │ │ │ ├── run_all.sh │ │ │ │ ├── shared-static-libs │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── README.md │ │ │ │ │ ├── compile_shared.sh │ │ │ │ │ ├── compile_static.sh │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── include │ │ │ │ │ │ │ ├── easylogging++.h │ │ │ │ │ │ │ └── mylib.hpp │ │ │ │ │ │ └── mylib.cpp │ │ │ │ │ └── myapp.cpp │ │ │ │ ├── shared-storage │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── README.md │ │ │ │ │ ├── compile_shared.sh │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── include │ │ │ │ │ │ │ ├── easylogging++.h │ │ │ │ │ │ │ └── mylib.hpp │ │ │ │ │ │ └── mylib.cpp │ │ │ │ │ └── myapp.cpp │ │ │ │ ├── std-array.cpp │ │ │ │ ├── syslog.cpp │ │ │ │ ├── timed-block.cpp │ │ │ │ ├── timed-scope.cpp │ │ │ │ ├── verbose.cpp │ │ │ │ └── very-basic.cpp │ │ │ ├── VC++ │ │ │ │ ├── DLLSample │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── DLLSample.sln │ │ │ │ │ ├── DLLSample_App │ │ │ │ │ │ ├── DLLSample_App.vcxproj │ │ │ │ │ │ ├── DLLSample_App.vcxproj.filters │ │ │ │ │ │ └── main.cpp │ │ │ │ │ └── DLLSample_Lib │ │ │ │ │ │ ├── DLLSample_Lib.vcxproj │ │ │ │ │ │ ├── DLLSample_Lib.vcxproj.filters │ │ │ │ │ │ ├── DLLSample_Lib.vcxproj.user │ │ │ │ │ │ ├── MyMaths.cpp │ │ │ │ │ │ └── MyMaths.h │ │ │ │ ├── VCPP2012_Win32_Multithreaded │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── VCPP2012_Win32.sln │ │ │ │ │ ├── VCPP2012_Win32.v11.suo │ │ │ │ │ └── VCPP2012_Win32 │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── VCPP2012_Win32.vcxproj │ │ │ │ │ │ ├── VCPP2012_Win32.vcxproj.filters │ │ │ │ │ │ ├── VCPP2012_Win32.vcxproj.user │ │ │ │ │ │ ├── easylogging++.h │ │ │ │ │ │ └── main.cpp │ │ │ │ └── VCPP2013_PreviewUltimate │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── Main.cpp │ │ │ │ │ ├── VCPP2013_PreviewUltimate.sln │ │ │ │ │ ├── VCPP2013_PreviewUltimate.vcxproj │ │ │ │ │ ├── VCPP2013_PreviewUltimate.vcxproj.filters │ │ │ │ │ └── easylogging++.h │ │ │ ├── async │ │ │ │ ├── .gitignore │ │ │ │ ├── build.sh │ │ │ │ ├── easylogging++.h │ │ │ │ ├── mymath.h │ │ │ │ └── prog.cpp │ │ │ ├── boost │ │ │ │ ├── .gitignore │ │ │ │ ├── build_all.sh │ │ │ │ ├── compile.sh │ │ │ │ ├── deque.cpp │ │ │ │ ├── easylogging++.h │ │ │ │ ├── list.cpp │ │ │ │ ├── map.cpp │ │ │ │ ├── run.sh │ │ │ │ ├── run_all.sh │ │ │ │ ├── set.cpp │ │ │ │ ├── string.cpp │ │ │ │ └── vector.cpp │ │ │ ├── default-logger.conf │ │ │ ├── global.conf │ │ │ ├── gtkmm │ │ │ │ ├── .gitignore │ │ │ │ ├── build_all.sh │ │ │ │ ├── compile.sh │ │ │ │ ├── easylogging++.h │ │ │ │ ├── hello_gtkmm │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── compile.sh │ │ │ │ │ ├── easylogging++.h │ │ │ │ │ ├── main.cc │ │ │ │ │ ├── window.cc │ │ │ │ │ └── window.h │ │ │ │ ├── run.sh │ │ │ │ ├── run_all.sh │ │ │ │ ├── sigc++.cpp │ │ │ │ └── ustring.cpp │ │ │ └── wxWidgets │ │ │ │ ├── .gitignore │ │ │ │ ├── build_all.sh │ │ │ │ ├── compile.sh │ │ │ │ ├── easylogging++.h │ │ │ │ ├── run.sh │ │ │ │ ├── run_all.sh │ │ │ │ ├── wxhashmap.cpp │ │ │ │ ├── wxhashset.cpp │ │ │ │ ├── wxlist.cpp │ │ │ │ ├── wxlonglong.cpp │ │ │ │ ├── wxstring.cpp │ │ │ │ └── wxvector.cpp │ │ ├── src │ │ │ └── easylogging++.h │ │ ├── test │ │ │ ├── .gitignore │ │ │ ├── .travis_build.sh │ │ │ ├── build_and_run.sh │ │ │ ├── command-line-args-test.h │ │ │ ├── configurations-test.h │ │ │ ├── custom-format-specifier-test.h │ │ │ ├── easylogging++.h │ │ │ ├── enum-helper-test.h │ │ │ ├── file-utils-test.h │ │ │ ├── format-specifier-test.h │ │ │ ├── global-configurations-test.h │ │ │ ├── helpers-test.h │ │ │ ├── hit-counter-test.h │ │ │ ├── log-format-resolution-test.h │ │ │ ├── loggable-test.h │ │ │ ├── logger-test.h │ │ │ ├── macros-test.h │ │ │ ├── main.cc │ │ │ ├── os-utils-test.h │ │ │ ├── plog-test.h │ │ │ ├── post-log-dispatch-handler-test.h │ │ │ ├── qt-gtest-proj-intel.pro │ │ │ ├── qt-gtest-proj.pro │ │ │ ├── registry-test.h │ │ │ ├── strict-file-size-check-test.h │ │ │ ├── string-utils-test.h │ │ │ ├── syslog-test.h │ │ │ ├── test.h │ │ │ ├── typed-configurations-test.h │ │ │ ├── utilities-test.h │ │ │ ├── verbose-app-arguments-test.h │ │ │ └── write-all-test.h │ │ └── tools │ │ │ ├── .gitignore │ │ │ ├── cpplint.py │ │ │ └── release.sh │ ├── utils.h │ └── warp_flow.h ├── matlab │ ├── extracOpticalFlow.m │ ├── extractOpticalFlow.m │ └── extractOpticalFlow_gpu.m ├── src │ ├── common.cpp │ ├── dense_flow.cpp │ ├── dense_flow_gpu.cpp │ ├── dense_warp_flow_gpu.cpp │ ├── py_denseflow.cpp │ └── zip_utils.cpp └── tools │ ├── extract_flow.cpp │ ├── extract_flow_gpu.cpp │ └── extract_warp_flow_gpu.cpp ├── denseflow.py ├── main.py └── requirements.txt /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/README.md -------------------------------------------------------------------------------- /dense_flow/.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | .idea/ 3 | build/ -------------------------------------------------------------------------------- /dense_flow/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/.gitmodules -------------------------------------------------------------------------------- /dense_flow/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/CMakeLists.txt -------------------------------------------------------------------------------- /dense_flow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/README.md -------------------------------------------------------------------------------- /dense_flow/build_of.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/build_of.py -------------------------------------------------------------------------------- /dense_flow/cmake/Modules/FindLibZip.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/cmake/Modules/FindLibZip.cmake -------------------------------------------------------------------------------- /dense_flow/include/CLUE/.atom-build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/CLUE/.atom-build.json -------------------------------------------------------------------------------- /dense_flow/include/CLUE/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/CLUE/.gitignore -------------------------------------------------------------------------------- /dense_flow/include/CLUE/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/CLUE/.travis.yml -------------------------------------------------------------------------------- /dense_flow/include/CLUE/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/CLUE/CMakeLists.txt -------------------------------------------------------------------------------- /dense_flow/include/CLUE/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/CLUE/LICENSE.txt -------------------------------------------------------------------------------- /dense_flow/include/CLUE/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/CLUE/README.md -------------------------------------------------------------------------------- /dense_flow/include/CLUE/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/CLUE/appveyor.yml -------------------------------------------------------------------------------- /dense_flow/include/CLUE/doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/CLUE/doc/Makefile -------------------------------------------------------------------------------- /dense_flow/include/CLUE/doc/source/array_view.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/CLUE/doc/source/array_view.rst -------------------------------------------------------------------------------- /dense_flow/include/CLUE/doc/source/concurrent_counter.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/CLUE/doc/source/concurrent_counter.rst -------------------------------------------------------------------------------- /dense_flow/include/CLUE/doc/source/concurrent_queue.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/CLUE/doc/source/concurrent_queue.rst -------------------------------------------------------------------------------- /dense_flow/include/CLUE/doc/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/CLUE/doc/source/conf.py -------------------------------------------------------------------------------- /dense_flow/include/CLUE/doc/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/CLUE/doc/source/index.rst -------------------------------------------------------------------------------- /dense_flow/include/CLUE/doc/source/meta.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/CLUE/doc/source/meta.rst -------------------------------------------------------------------------------- /dense_flow/include/CLUE/doc/source/meta_seq.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/CLUE/doc/source/meta_seq.rst -------------------------------------------------------------------------------- /dense_flow/include/CLUE/doc/source/misc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/CLUE/doc/source/misc.rst -------------------------------------------------------------------------------- /dense_flow/include/CLUE/doc/source/optional.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/CLUE/doc/source/optional.rst -------------------------------------------------------------------------------- /dense_flow/include/CLUE/doc/source/predicates.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/CLUE/doc/source/predicates.rst -------------------------------------------------------------------------------- /dense_flow/include/CLUE/doc/source/reindexed_view.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/CLUE/doc/source/reindexed_view.rst -------------------------------------------------------------------------------- /dense_flow/include/CLUE/doc/source/sformat.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/CLUE/doc/source/sformat.rst -------------------------------------------------------------------------------- /dense_flow/include/CLUE/doc/source/shared_mutex.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/CLUE/doc/source/shared_mutex.rst -------------------------------------------------------------------------------- /dense_flow/include/CLUE/doc/source/stemplate.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/CLUE/doc/source/stemplate.rst -------------------------------------------------------------------------------- /dense_flow/include/CLUE/doc/source/string_view.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/CLUE/doc/source/string_view.rst -------------------------------------------------------------------------------- /dense_flow/include/CLUE/doc/source/stringex.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/CLUE/doc/source/stringex.rst -------------------------------------------------------------------------------- /dense_flow/include/CLUE/doc/source/textio.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/CLUE/doc/source/textio.rst -------------------------------------------------------------------------------- /dense_flow/include/CLUE/doc/source/thread_pool.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/CLUE/doc/source/thread_pool.rst -------------------------------------------------------------------------------- /dense_flow/include/CLUE/doc/source/timing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/CLUE/doc/source/timing.rst -------------------------------------------------------------------------------- /dense_flow/include/CLUE/doc/source/type_name.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/CLUE/doc/source/type_name.rst -------------------------------------------------------------------------------- /dense_flow/include/CLUE/doc/source/type_traits.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/CLUE/doc/source/type_traits.rst -------------------------------------------------------------------------------- /dense_flow/include/CLUE/doc/source/value_range.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/CLUE/doc/source/value_range.rst -------------------------------------------------------------------------------- /dense_flow/include/CLUE/examples/ex_cccounter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/CLUE/examples/ex_cccounter.cpp -------------------------------------------------------------------------------- /dense_flow/include/CLUE/examples/ex_ccqueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/CLUE/examples/ex_ccqueue.cpp -------------------------------------------------------------------------------- /dense_flow/include/CLUE/examples/ex_stopwatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/CLUE/examples/ex_stopwatch.cpp -------------------------------------------------------------------------------- /dense_flow/include/CLUE/examples/ex_strings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/CLUE/examples/ex_strings.cpp -------------------------------------------------------------------------------- /dense_flow/include/CLUE/examples/ex_threadpool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/CLUE/examples/ex_threadpool.cpp -------------------------------------------------------------------------------- /dense_flow/include/CLUE/examples/ex_timing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/CLUE/examples/ex_timing.cpp -------------------------------------------------------------------------------- /dense_flow/include/CLUE/include/clue/array_view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/CLUE/include/clue/array_view.hpp -------------------------------------------------------------------------------- /dense_flow/include/CLUE/include/clue/clue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/CLUE/include/clue/clue.hpp -------------------------------------------------------------------------------- /dense_flow/include/CLUE/include/clue/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/CLUE/include/clue/common.hpp -------------------------------------------------------------------------------- /dense_flow/include/CLUE/include/clue/concurrent_counter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/CLUE/include/clue/concurrent_counter.hpp -------------------------------------------------------------------------------- /dense_flow/include/CLUE/include/clue/concurrent_queue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/CLUE/include/clue/concurrent_queue.hpp -------------------------------------------------------------------------------- /dense_flow/include/CLUE/include/clue/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/CLUE/include/clue/config.hpp -------------------------------------------------------------------------------- /dense_flow/include/CLUE/include/clue/container_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/CLUE/include/clue/container_common.hpp -------------------------------------------------------------------------------- /dense_flow/include/CLUE/include/clue/memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/CLUE/include/clue/memory.hpp -------------------------------------------------------------------------------- /dense_flow/include/CLUE/include/clue/meta.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/CLUE/include/clue/meta.hpp -------------------------------------------------------------------------------- /dense_flow/include/CLUE/include/clue/meta_seq.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/CLUE/include/clue/meta_seq.hpp -------------------------------------------------------------------------------- /dense_flow/include/CLUE/include/clue/misc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/CLUE/include/clue/misc.hpp -------------------------------------------------------------------------------- /dense_flow/include/CLUE/include/clue/optional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/CLUE/include/clue/optional.hpp -------------------------------------------------------------------------------- /dense_flow/include/CLUE/include/clue/predicates.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/CLUE/include/clue/predicates.hpp -------------------------------------------------------------------------------- /dense_flow/include/CLUE/include/clue/preproc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/CLUE/include/clue/preproc.hpp -------------------------------------------------------------------------------- /dense_flow/include/CLUE/include/clue/reindexed_view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/CLUE/include/clue/reindexed_view.hpp -------------------------------------------------------------------------------- /dense_flow/include/CLUE/include/clue/sformat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/CLUE/include/clue/sformat.hpp -------------------------------------------------------------------------------- /dense_flow/include/CLUE/include/clue/shared_mutex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/CLUE/include/clue/shared_mutex.hpp -------------------------------------------------------------------------------- /dense_flow/include/CLUE/include/clue/stemplate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/CLUE/include/clue/stemplate.hpp -------------------------------------------------------------------------------- /dense_flow/include/CLUE/include/clue/string_view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/CLUE/include/clue/string_view.hpp -------------------------------------------------------------------------------- /dense_flow/include/CLUE/include/clue/stringex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/CLUE/include/clue/stringex.hpp -------------------------------------------------------------------------------- /dense_flow/include/CLUE/include/clue/textio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/CLUE/include/clue/textio.hpp -------------------------------------------------------------------------------- /dense_flow/include/CLUE/include/clue/thread_pool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/CLUE/include/clue/thread_pool.hpp -------------------------------------------------------------------------------- /dense_flow/include/CLUE/include/clue/timing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/CLUE/include/clue/timing.hpp -------------------------------------------------------------------------------- /dense_flow/include/CLUE/include/clue/type_name.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/CLUE/include/clue/type_name.hpp -------------------------------------------------------------------------------- /dense_flow/include/CLUE/include/clue/type_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/CLUE/include/clue/type_traits.hpp -------------------------------------------------------------------------------- /dense_flow/include/CLUE/include/clue/value_range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/CLUE/include/clue/value_range.hpp -------------------------------------------------------------------------------- /dense_flow/include/CLUE/tests/test_array_view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/CLUE/tests/test_array_view.cpp -------------------------------------------------------------------------------- /dense_flow/include/CLUE/tests/test_concurrent_counter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/CLUE/tests/test_concurrent_counter.cpp -------------------------------------------------------------------------------- /dense_flow/include/CLUE/tests/test_concurrent_queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/CLUE/tests/test_concurrent_queue.cpp -------------------------------------------------------------------------------- /dense_flow/include/CLUE/tests/test_include_all.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/CLUE/tests/test_include_all.cpp -------------------------------------------------------------------------------- /dense_flow/include/CLUE/tests/test_meta.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/CLUE/tests/test_meta.cpp -------------------------------------------------------------------------------- /dense_flow/include/CLUE/tests/test_meta_seq.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/CLUE/tests/test_meta_seq.cpp -------------------------------------------------------------------------------- /dense_flow/include/CLUE/tests/test_misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/CLUE/tests/test_misc.cpp -------------------------------------------------------------------------------- /dense_flow/include/CLUE/tests/test_optional.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/CLUE/tests/test_optional.cpp -------------------------------------------------------------------------------- /dense_flow/include/CLUE/tests/test_predicates.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/CLUE/tests/test_predicates.cpp -------------------------------------------------------------------------------- /dense_flow/include/CLUE/tests/test_reindexed_view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/CLUE/tests/test_reindexed_view.cpp -------------------------------------------------------------------------------- /dense_flow/include/CLUE/tests/test_sformat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/CLUE/tests/test_sformat.cpp -------------------------------------------------------------------------------- /dense_flow/include/CLUE/tests/test_shared_mutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/CLUE/tests/test_shared_mutex.cpp -------------------------------------------------------------------------------- /dense_flow/include/CLUE/tests/test_stemplate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/CLUE/tests/test_stemplate.cpp -------------------------------------------------------------------------------- /dense_flow/include/CLUE/tests/test_string_view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/CLUE/tests/test_string_view.cpp -------------------------------------------------------------------------------- /dense_flow/include/CLUE/tests/test_stringex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/CLUE/tests/test_stringex.cpp -------------------------------------------------------------------------------- /dense_flow/include/CLUE/tests/test_textio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/CLUE/tests/test_textio.cpp -------------------------------------------------------------------------------- /dense_flow/include/CLUE/tests/test_thread_pool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/CLUE/tests/test_thread_pool.cpp -------------------------------------------------------------------------------- /dense_flow/include/CLUE/tests/test_type_name.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/CLUE/tests/test_type_name.cpp -------------------------------------------------------------------------------- /dense_flow/include/CLUE/tests/test_value_range.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/CLUE/tests/test_value_range.cpp -------------------------------------------------------------------------------- /dense_flow/include/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/common.h -------------------------------------------------------------------------------- /dense_flow/include/dense_flow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/dense_flow.h -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/.gitignore -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/.travis.yml -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/LICENCE -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/README.md -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.00: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.00 -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.01 -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.02: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.02 -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.03: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.03 -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.04: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.04 -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.05: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.05 -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.06: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.06 -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.07: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.07 -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.08: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.08 -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.09: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.09 -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.10 -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.11 -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.12 -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.13: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.13 -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.14 -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.15: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.15 -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.16 -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.17: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.17 -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.18 -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.19 -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.20: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.20 -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.21: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.21 -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.22: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.22 -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.23: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.23 -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.24: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.24 -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.25: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.25 -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.26: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.26 -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.27: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.27 -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.28: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.28 -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.29: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.29 -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.30: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.30 -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.31: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.31 -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.32 -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.33: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.33 -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.34: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.34 -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.35: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.35 -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.36: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.36 -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.37: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.37 -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.38: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.38 -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.39: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.39 -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.40: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.40 -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.41: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.41 -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.42: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.42 -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.43: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.43 -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.44: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.44 -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.45: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.45 -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.46: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.46 -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.47: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.47 -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.48: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.48 -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.49: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.49 -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.50: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.50 -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.51: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.51 -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.52: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.52 -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.53: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.53 -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.54: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.54 -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.55: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.55 -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.56: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.56 -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.57: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.57 -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.58: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.58 -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.59: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.59 -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.60: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.60 -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.61: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.61 -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.62: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.62 -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.63: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.63 -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.64 -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.65: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.65 -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.66: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.66 -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.67: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.67 -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.68: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.68 -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.69: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.69 -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.70: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.70 -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.71: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.71 -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.72: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.72 -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.73: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.73 -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.74: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.74 -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.75: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.75 -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.76: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.76 -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.77: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.77 -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.78: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.78 -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.79: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.79 -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.80: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/doc/RELEASE-NOTES-v9.80 -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/.gitignore: -------------------------------------------------------------------------------- 1 | bin/* 2 | -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/API/.gitignore: -------------------------------------------------------------------------------- 1 | bin/* 2 | logs/* 3 | -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/API/build_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/API/build_all.sh -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/API/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/API/compile.sh -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/API/logbuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/API/logbuilder.cpp -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/API/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/API/run.sh -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/API/run_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/API/run_all.sh -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/Dev-C++/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/Dev-C++/.gitignore -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/Dev-C++/HelloDevC++.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/Dev-C++/HelloDevC++.dev -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/Dev-C++/HelloDevC++.layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/Dev-C++/HelloDevC++.layout -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/Dev-C++/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/Dev-C++/main.cpp -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/MinGW/.gitignore: -------------------------------------------------------------------------------- 1 | logs/* 2 | *.exe -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/MinGW/compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/MinGW/compile.bat -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/MinGW/easylogging++.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/MinGW/easylogging++.h -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/MinGW/prog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/MinGW/prog.cpp -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/OpenGL/.gitignore: -------------------------------------------------------------------------------- 1 | bin/* 2 | logs/* 3 | -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/OpenGL/Cube/.gitignore: -------------------------------------------------------------------------------- 1 | bin/* 2 | logs/* 3 | -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/OpenGL/Cube/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/OpenGL/Cube/LICENCE -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/OpenGL/Cube/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/OpenGL/Cube/Makefile -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/OpenGL/Cube/imageloader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/OpenGL/Cube/imageloader.cpp -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/OpenGL/Cube/imageloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/OpenGL/Cube/imageloader.h -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/OpenGL/Cube/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/OpenGL/Cube/main.cpp -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/OpenGL/Cube/vtr.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/OpenGL/Cube/vtr.bmp -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/OpenGL/basic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/OpenGL/basic.cpp -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/OpenGL/build_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/OpenGL/build_all.sh -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/OpenGL/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/OpenGL/compile.sh -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/OpenGL/easylogging++.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/OpenGL/easylogging++.h -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/OpenGL/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/OpenGL/run.sh -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/OpenGL/run_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/OpenGL/run_all.sh -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/Qt/.gitignore: -------------------------------------------------------------------------------- 1 | Makefile 2 | build-* 3 | -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/Qt/basic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/Qt/basic/README.md -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/Qt/basic/easylogging++.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/Qt/basic/easylogging++.h -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/Qt/basic/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/Qt/basic/main.cpp -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/Qt/basic/mythread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/Qt/basic/mythread.h -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/Qt/basic/qt-sample.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/Qt/basic/qt-sample.pro -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/Qt/basic/test_conf.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/Qt/basic/test_conf.conf -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/Qt/fast-dictionary/.gitignore: -------------------------------------------------------------------------------- 1 | logs/* 2 | fast-dictionary 3 | *.o 4 | -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/Qt/fast-dictionary/easylogging++.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/Qt/fast-dictionary/easylogging++.h -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/Qt/fast-dictionary/fast-dictionary.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/Qt/fast-dictionary/fast-dictionary.pro -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/Qt/fast-dictionary/listwithsearch.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/Qt/fast-dictionary/listwithsearch.cc -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/Qt/fast-dictionary/listwithsearch.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/Qt/fast-dictionary/listwithsearch.hh -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/Qt/fast-dictionary/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/Qt/fast-dictionary/main.cc -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/Qt/fast-dictionary/mainwindow.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/Qt/fast-dictionary/mainwindow.cc -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/Qt/fast-dictionary/mainwindow.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/Qt/fast-dictionary/mainwindow.hh -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/Qt/fast-dictionary/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/Qt/fast-dictionary/mainwindow.ui -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/Qt/fast-dictionary/moc_listwithsearch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/Qt/fast-dictionary/moc_listwithsearch.cpp -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/Qt/fast-dictionary/moc_mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/Qt/fast-dictionary/moc_mainwindow.cpp -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/Qt/fast-dictionary/ui_mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/Qt/fast-dictionary/ui_mainwindow.h -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/Qt/fast-dictionary/words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/Qt/fast-dictionary/words.txt -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/Qt/file-splitter-joiner/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/Qt/file-splitter-joiner/.gitignore -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/Qt/file-splitter-joiner/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/Qt/file-splitter-joiner/README.md -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/Qt/file-splitter-joiner/about.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/Qt/file-splitter-joiner/about.cpp -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/Qt/file-splitter-joiner/about.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/Qt/file-splitter-joiner/about.h -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/Qt/file-splitter-joiner/about.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/Qt/file-splitter-joiner/about.ui -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/Qt/file-splitter-joiner/addsplittedfiledialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/Qt/file-splitter-joiner/addsplittedfiledialog.cpp -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/Qt/file-splitter-joiner/addsplittedfiledialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/Qt/file-splitter-joiner/addsplittedfiledialog.h -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/Qt/file-splitter-joiner/addsplittedfiledialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/Qt/file-splitter-joiner/addsplittedfiledialog.ui -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/Qt/file-splitter-joiner/easylogging++.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/Qt/file-splitter-joiner/easylogging++.h -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/Qt/file-splitter-joiner/file-splitter-and-joiner.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/Qt/file-splitter-joiner/file-splitter-and-joiner.pro -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/Qt/file-splitter-joiner/joinercore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/Qt/file-splitter-joiner/joinercore.cpp -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/Qt/file-splitter-joiner/joinercore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/Qt/file-splitter-joiner/joinercore.h -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/Qt/file-splitter-joiner/joinerwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/Qt/file-splitter-joiner/joinerwidget.cpp -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/Qt/file-splitter-joiner/joinerwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/Qt/file-splitter-joiner/joinerwidget.h -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/Qt/file-splitter-joiner/joinerwidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/Qt/file-splitter-joiner/joinerwidget.ui -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/Qt/file-splitter-joiner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/Qt/file-splitter-joiner/main.cpp -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/Qt/file-splitter-joiner/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/Qt/file-splitter-joiner/mainwindow.cpp -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/Qt/file-splitter-joiner/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/Qt/file-splitter-joiner/mainwindow.h -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/Qt/file-splitter-joiner/partprocessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/Qt/file-splitter-joiner/partprocessor.cpp -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/Qt/file-splitter-joiner/partprocessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/Qt/file-splitter-joiner/partprocessor.h -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/Qt/file-splitter-joiner/splitablefiledelegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/Qt/file-splitter-joiner/splitablefiledelegate.cpp -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/Qt/file-splitter-joiner/splitablefiledelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/Qt/file-splitter-joiner/splitablefiledelegate.h -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/Qt/file-splitter-joiner/splittercore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/Qt/file-splitter-joiner/splittercore.cpp -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/Qt/file-splitter-joiner/splittercore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/Qt/file-splitter-joiner/splittercore.h -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/Qt/file-splitter-joiner/splitterwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/Qt/file-splitter-joiner/splitterwidget.cpp -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/Qt/file-splitter-joiner/splitterwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/Qt/file-splitter-joiner/splitterwidget.h -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/Qt/file-splitter-joiner/splitterwidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/Qt/file-splitter-joiner/splitterwidget.ui -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/Qt/shared-lib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/Qt/shared-lib/README.md -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/Qt/shared-lib/myapp/easylogging++.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/Qt/shared-lib/myapp/easylogging++.h -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/Qt/shared-lib/myapp/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/Qt/shared-lib/myapp/main.cc -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/Qt/shared-lib/myapp/myapp.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/Qt/shared-lib/myapp/myapp.pro -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/Qt/shared-lib/mylib/easylogging++.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/Qt/shared-lib/mylib/easylogging++.h -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/Qt/shared-lib/mylib/mylib.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/Qt/shared-lib/mylib/mylib.cc -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/Qt/shared-lib/mylib/mylib.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/Qt/shared-lib/mylib/mylib.hh -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/Qt/shared-lib/mylib/mylib.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/Qt/shared-lib/mylib/mylib.pro -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/Qt/shared-lib/mylib/mylib_global.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/Qt/shared-lib/mylib/mylib_global.hh -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/STL/.gitignore: -------------------------------------------------------------------------------- 1 | bin/* 2 | logs/* 3 | -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/STL/.travis_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/STL/.travis_build.sh -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/STL/all-logs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/STL/all-logs.cpp -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/STL/autospace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/STL/autospace.cpp -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/STL/build_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/STL/build_all.sh -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/STL/check-macros.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/STL/check-macros.cpp -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/STL/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/STL/compile.sh -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/STL/conditional.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/STL/conditional.cpp -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/STL/configurator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/STL/configurator.cpp -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/STL/containers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/STL/containers.cpp -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/STL/crash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/STL/crash.cpp -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/STL/custom-class.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/STL/custom-class.cpp -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/STL/custom-crash-handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/STL/custom-crash-handler.cpp -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/STL/custom-format-spec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/STL/custom-format-spec.cpp -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/STL/custom-performance-output.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/STL/custom-performance-output.cpp -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/STL/default-configurations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/STL/default-configurations.cpp -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/STL/default-log-file-from-arg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/STL/default-log-file-from-arg.cpp -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/STL/del-logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/STL/del-logger.cpp -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/STL/easylogging++.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/STL/easylogging++.h -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/STL/flags.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/STL/flags.cpp -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/STL/global-configuration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/STL/global-configuration.cpp -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/STL/helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/STL/helpers.cpp -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/STL/locale.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/STL/locale.cpp -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/STL/log-dispatch-callback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/STL/log-dispatch-callback.cpp -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/STL/loggable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/STL/loggable.cpp -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/STL/logger-log-functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/STL/logger-log-functions.cpp -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/STL/make-loggable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/STL/make-loggable.cpp -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/STL/manipulators.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/STL/manipulators.cpp -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/STL/multiple-loggers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/STL/multiple-loggers.cpp -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/STL/no-default-log-file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/STL/no-default-log-file.cpp -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/STL/occasional.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/STL/occasional.cpp -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/STL/plog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/STL/plog.cpp -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/STL/post-performance-tracking-handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/STL/post-performance-tracking-handler.cpp -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/STL/pthread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/STL/pthread.cpp -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/STL/roll-out.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/STL/roll-out.cpp -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/STL/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/STL/run.sh -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/STL/run_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/STL/run_all.sh -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/STL/shared-static-libs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/STL/shared-static-libs/.gitignore -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/STL/shared-static-libs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/STL/shared-static-libs/README.md -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/STL/shared-static-libs/compile_shared.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/STL/shared-static-libs/compile_shared.sh -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/STL/shared-static-libs/compile_static.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/STL/shared-static-libs/compile_static.sh -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/STL/shared-static-libs/lib/include/easylogging++.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/STL/shared-static-libs/lib/include/easylogging++.h -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/STL/shared-static-libs/lib/include/mylib.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/STL/shared-static-libs/lib/include/mylib.hpp -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/STL/shared-static-libs/lib/mylib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/STL/shared-static-libs/lib/mylib.cpp -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/STL/shared-static-libs/myapp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/STL/shared-static-libs/myapp.cpp -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/STL/shared-storage/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/STL/shared-storage/.gitignore -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/STL/shared-storage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/STL/shared-storage/README.md -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/STL/shared-storage/compile_shared.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/STL/shared-storage/compile_shared.sh -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/STL/shared-storage/lib/include/easylogging++.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/STL/shared-storage/lib/include/easylogging++.h -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/STL/shared-storage/lib/include/mylib.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/STL/shared-storage/lib/include/mylib.hpp -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/STL/shared-storage/lib/mylib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/STL/shared-storage/lib/mylib.cpp -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/STL/shared-storage/myapp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/STL/shared-storage/myapp.cpp -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/STL/std-array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/STL/std-array.cpp -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/STL/syslog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/STL/syslog.cpp -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/STL/timed-block.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/STL/timed-block.cpp -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/STL/timed-scope.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/STL/timed-scope.cpp -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/STL/verbose.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/STL/verbose.cpp -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/STL/very-basic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/STL/very-basic.cpp -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/VC++/DLLSample/.gitignore: -------------------------------------------------------------------------------- 1 | Debug/* 2 | logs/* 3 | *sdf 4 | *.suo -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/VC++/DLLSample/DLLSample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/VC++/DLLSample/DLLSample.sln -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/VC++/DLLSample/DLLSample_App/DLLSample_App.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/VC++/DLLSample/DLLSample_App/DLLSample_App.vcxproj -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/VC++/DLLSample/DLLSample_App/DLLSample_App.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/VC++/DLLSample/DLLSample_App/DLLSample_App.vcxproj.filters -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/VC++/DLLSample/DLLSample_App/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/VC++/DLLSample/DLLSample_App/main.cpp -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/VC++/DLLSample/DLLSample_Lib/DLLSample_Lib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/VC++/DLLSample/DLLSample_Lib/DLLSample_Lib.vcxproj -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/VC++/DLLSample/DLLSample_Lib/DLLSample_Lib.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/VC++/DLLSample/DLLSample_Lib/DLLSample_Lib.vcxproj.filters -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/VC++/DLLSample/DLLSample_Lib/DLLSample_Lib.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/VC++/DLLSample/DLLSample_Lib/DLLSample_Lib.vcxproj.user -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/VC++/DLLSample/DLLSample_Lib/MyMaths.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/VC++/DLLSample/DLLSample_Lib/MyMaths.cpp -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/VC++/DLLSample/DLLSample_Lib/MyMaths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/VC++/DLLSample/DLLSample_Lib/MyMaths.h -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/VC++/VCPP2012_Win32_Multithreaded/.gitignore: -------------------------------------------------------------------------------- 1 | Debug/* 2 | logs/* 3 | *sdf 4 | 5 | -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/VC++/VCPP2012_Win32_Multithreaded/VCPP2012_Win32.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/VC++/VCPP2012_Win32_Multithreaded/VCPP2012_Win32.sln -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/VC++/VCPP2012_Win32_Multithreaded/VCPP2012_Win32.v11.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/VC++/VCPP2012_Win32_Multithreaded/VCPP2012_Win32.v11.suo -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/VC++/VCPP2012_Win32_Multithreaded/VCPP2012_Win32/.gitignore: -------------------------------------------------------------------------------- 1 | Debug/* 2 | logs/* 3 | -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/VC++/VCPP2012_Win32_Multithreaded/VCPP2012_Win32/VCPP2012_Win32.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/VC++/VCPP2012_Win32_Multithreaded/VCPP2012_Win32/VCPP2012_Win32.vcxproj -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/VC++/VCPP2012_Win32_Multithreaded/VCPP2012_Win32/VCPP2012_Win32.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/VC++/VCPP2012_Win32_Multithreaded/VCPP2012_Win32/VCPP2012_Win32.vcxproj.filters -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/VC++/VCPP2012_Win32_Multithreaded/VCPP2012_Win32/VCPP2012_Win32.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/VC++/VCPP2012_Win32_Multithreaded/VCPP2012_Win32/VCPP2012_Win32.vcxproj.user -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/VC++/VCPP2012_Win32_Multithreaded/VCPP2012_Win32/easylogging++.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/VC++/VCPP2012_Win32_Multithreaded/VCPP2012_Win32/easylogging++.h -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/VC++/VCPP2012_Win32_Multithreaded/VCPP2012_Win32/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/VC++/VCPP2012_Win32_Multithreaded/VCPP2012_Win32/main.cpp -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/VC++/VCPP2013_PreviewUltimate/.gitignore: -------------------------------------------------------------------------------- 1 | Debug/* 2 | logs/* 3 | *sdf 4 | *.suo -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/VC++/VCPP2013_PreviewUltimate/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/VC++/VCPP2013_PreviewUltimate/Main.cpp -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/VC++/VCPP2013_PreviewUltimate/VCPP2013_PreviewUltimate.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/VC++/VCPP2013_PreviewUltimate/VCPP2013_PreviewUltimate.sln -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/VC++/VCPP2013_PreviewUltimate/VCPP2013_PreviewUltimate.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/VC++/VCPP2013_PreviewUltimate/VCPP2013_PreviewUltimate.vcxproj -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/VC++/VCPP2013_PreviewUltimate/VCPP2013_PreviewUltimate.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/VC++/VCPP2013_PreviewUltimate/VCPP2013_PreviewUltimate.vcxproj.filters -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/VC++/VCPP2013_PreviewUltimate/easylogging++.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/VC++/VCPP2013_PreviewUltimate/easylogging++.h -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/async/.gitignore: -------------------------------------------------------------------------------- 1 | prog 2 | logs/* 3 | -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/async/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/async/build.sh -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/async/easylogging++.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/async/easylogging++.h -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/async/mymath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/async/mymath.h -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/async/prog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/async/prog.cpp -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/boost/.gitignore: -------------------------------------------------------------------------------- 1 | bin/* 2 | logs/* 3 | -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/boost/build_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/boost/build_all.sh -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/boost/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/boost/compile.sh -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/boost/deque.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/boost/deque.cpp -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/boost/easylogging++.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/boost/easylogging++.h -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/boost/list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/boost/list.cpp -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/boost/map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/boost/map.cpp -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/boost/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/boost/run.sh -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/boost/run_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/boost/run_all.sh -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/boost/set.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/boost/set.cpp -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/boost/string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/boost/string.cpp -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/boost/vector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/boost/vector.cpp -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/default-logger.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/default-logger.conf -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/global.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/global.conf -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/gtkmm/.gitignore: -------------------------------------------------------------------------------- 1 | bin/* 2 | logs/* 3 | -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/gtkmm/build_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/gtkmm/build_all.sh -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/gtkmm/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/gtkmm/compile.sh -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/gtkmm/easylogging++.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/gtkmm/easylogging++.h -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/gtkmm/hello_gtkmm/.gitignore: -------------------------------------------------------------------------------- 1 | logs/* 2 | *.bin 3 | 4 | -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/gtkmm/hello_gtkmm/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/gtkmm/hello_gtkmm/compile.sh -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/gtkmm/hello_gtkmm/easylogging++.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/gtkmm/hello_gtkmm/easylogging++.h -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/gtkmm/hello_gtkmm/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/gtkmm/hello_gtkmm/main.cc -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/gtkmm/hello_gtkmm/window.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/gtkmm/hello_gtkmm/window.cc -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/gtkmm/hello_gtkmm/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/gtkmm/hello_gtkmm/window.h -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/gtkmm/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/gtkmm/run.sh -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/gtkmm/run_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/gtkmm/run_all.sh -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/gtkmm/sigc++.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/gtkmm/sigc++.cpp -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/gtkmm/ustring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/gtkmm/ustring.cpp -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/wxWidgets/.gitignore: -------------------------------------------------------------------------------- 1 | bin/* 2 | logs/* 3 | -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/wxWidgets/build_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/wxWidgets/build_all.sh -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/wxWidgets/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/wxWidgets/compile.sh -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/wxWidgets/easylogging++.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/wxWidgets/easylogging++.h -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/wxWidgets/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/wxWidgets/run.sh -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/wxWidgets/run_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/wxWidgets/run_all.sh -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/wxWidgets/wxhashmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/wxWidgets/wxhashmap.cpp -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/wxWidgets/wxhashset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/wxWidgets/wxhashset.cpp -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/wxWidgets/wxlist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/wxWidgets/wxlist.cpp -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/wxWidgets/wxlonglong.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/wxWidgets/wxlonglong.cpp -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/wxWidgets/wxstring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/wxWidgets/wxstring.cpp -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/samples/wxWidgets/wxvector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/samples/wxWidgets/wxvector.cpp -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/src/easylogging++.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/src/easylogging++.h -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/test/.gitignore: -------------------------------------------------------------------------------- 1 | bin/* 2 | logs/* 3 | -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/test/.travis_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/test/.travis_build.sh -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/test/build_and_run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/test/build_and_run.sh -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/test/command-line-args-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/test/command-line-args-test.h -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/test/configurations-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/test/configurations-test.h -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/test/custom-format-specifier-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/test/custom-format-specifier-test.h -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/test/easylogging++.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/test/easylogging++.h -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/test/enum-helper-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/test/enum-helper-test.h -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/test/file-utils-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/test/file-utils-test.h -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/test/format-specifier-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/test/format-specifier-test.h -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/test/global-configurations-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/test/global-configurations-test.h -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/test/helpers-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/test/helpers-test.h -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/test/hit-counter-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/test/hit-counter-test.h -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/test/log-format-resolution-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/test/log-format-resolution-test.h -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/test/loggable-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/test/loggable-test.h -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/test/logger-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/test/logger-test.h -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/test/macros-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/test/macros-test.h -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/test/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/test/main.cc -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/test/os-utils-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/test/os-utils-test.h -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/test/plog-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/test/plog-test.h -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/test/post-log-dispatch-handler-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/test/post-log-dispatch-handler-test.h -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/test/qt-gtest-proj-intel.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/test/qt-gtest-proj-intel.pro -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/test/qt-gtest-proj.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/test/qt-gtest-proj.pro -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/test/registry-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/test/registry-test.h -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/test/strict-file-size-check-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/test/strict-file-size-check-test.h -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/test/string-utils-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/test/string-utils-test.h -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/test/syslog-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/test/syslog-test.h -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/test/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/test/test.h -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/test/typed-configurations-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/test/typed-configurations-test.h -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/test/utilities-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/test/utilities-test.h -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/test/verbose-app-arguments-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/test/verbose-app-arguments-test.h -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/test/write-all-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/test/write-all-test.h -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/tools/.gitignore: -------------------------------------------------------------------------------- 1 | releases/* 2 | latest.zip 3 | -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/tools/cpplint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/tools/cpplint.py -------------------------------------------------------------------------------- /dense_flow/include/easylogging++/tools/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/easylogging++/tools/release.sh -------------------------------------------------------------------------------- /dense_flow/include/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/utils.h -------------------------------------------------------------------------------- /dense_flow/include/warp_flow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/include/warp_flow.h -------------------------------------------------------------------------------- /dense_flow/matlab/extracOpticalFlow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/matlab/extracOpticalFlow.m -------------------------------------------------------------------------------- /dense_flow/matlab/extractOpticalFlow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/matlab/extractOpticalFlow.m -------------------------------------------------------------------------------- /dense_flow/matlab/extractOpticalFlow_gpu.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/matlab/extractOpticalFlow_gpu.m -------------------------------------------------------------------------------- /dense_flow/src/common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/src/common.cpp -------------------------------------------------------------------------------- /dense_flow/src/dense_flow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/src/dense_flow.cpp -------------------------------------------------------------------------------- /dense_flow/src/dense_flow_gpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/src/dense_flow_gpu.cpp -------------------------------------------------------------------------------- /dense_flow/src/dense_warp_flow_gpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/src/dense_warp_flow_gpu.cpp -------------------------------------------------------------------------------- /dense_flow/src/py_denseflow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/src/py_denseflow.cpp -------------------------------------------------------------------------------- /dense_flow/src/zip_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/src/zip_utils.cpp -------------------------------------------------------------------------------- /dense_flow/tools/extract_flow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/tools/extract_flow.cpp -------------------------------------------------------------------------------- /dense_flow/tools/extract_flow_gpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/tools/extract_flow_gpu.cpp -------------------------------------------------------------------------------- /dense_flow/tools/extract_warp_flow_gpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/dense_flow/tools/extract_warp_flow_gpu.cpp -------------------------------------------------------------------------------- /denseflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/denseflow.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qijiezhao/OpticalFlow-SpeedTest/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | PIL 3 | multiprocess 4 | sk-video 5 | scipy 6 | --------------------------------------------------------------------------------