├── .gitignore ├── CMakeLists.txt ├── COPYING ├── README.md ├── lib ├── CMakeLists.txt ├── include │ ├── optical_flow.hpp │ └── super_resolution.hpp └── src │ ├── btv_l1.cpp │ ├── btv_l1_gpu.cpp │ ├── btv_l1_gpu.cu │ ├── input_array_utility.cpp │ ├── input_array_utility.hpp │ ├── optical_flow.cpp │ ├── ring_buffer.hpp │ └── super_resolution.cpp └── samples ├── CMakeLists.txt ├── quality_test ├── CMakeLists.txt └── main.cpp └── video ├── CMakeLists.txt └── main.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raulnguyen/SuperResolution/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raulnguyen/SuperResolution/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raulnguyen/SuperResolution/HEAD/COPYING -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raulnguyen/SuperResolution/HEAD/README.md -------------------------------------------------------------------------------- /lib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raulnguyen/SuperResolution/HEAD/lib/CMakeLists.txt -------------------------------------------------------------------------------- /lib/include/optical_flow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raulnguyen/SuperResolution/HEAD/lib/include/optical_flow.hpp -------------------------------------------------------------------------------- /lib/include/super_resolution.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raulnguyen/SuperResolution/HEAD/lib/include/super_resolution.hpp -------------------------------------------------------------------------------- /lib/src/btv_l1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raulnguyen/SuperResolution/HEAD/lib/src/btv_l1.cpp -------------------------------------------------------------------------------- /lib/src/btv_l1_gpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raulnguyen/SuperResolution/HEAD/lib/src/btv_l1_gpu.cpp -------------------------------------------------------------------------------- /lib/src/btv_l1_gpu.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raulnguyen/SuperResolution/HEAD/lib/src/btv_l1_gpu.cu -------------------------------------------------------------------------------- /lib/src/input_array_utility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raulnguyen/SuperResolution/HEAD/lib/src/input_array_utility.cpp -------------------------------------------------------------------------------- /lib/src/input_array_utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raulnguyen/SuperResolution/HEAD/lib/src/input_array_utility.hpp -------------------------------------------------------------------------------- /lib/src/optical_flow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raulnguyen/SuperResolution/HEAD/lib/src/optical_flow.cpp -------------------------------------------------------------------------------- /lib/src/ring_buffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raulnguyen/SuperResolution/HEAD/lib/src/ring_buffer.hpp -------------------------------------------------------------------------------- /lib/src/super_resolution.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raulnguyen/SuperResolution/HEAD/lib/src/super_resolution.cpp -------------------------------------------------------------------------------- /samples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raulnguyen/SuperResolution/HEAD/samples/CMakeLists.txt -------------------------------------------------------------------------------- /samples/quality_test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raulnguyen/SuperResolution/HEAD/samples/quality_test/CMakeLists.txt -------------------------------------------------------------------------------- /samples/quality_test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raulnguyen/SuperResolution/HEAD/samples/quality_test/main.cpp -------------------------------------------------------------------------------- /samples/video/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raulnguyen/SuperResolution/HEAD/samples/video/CMakeLists.txt -------------------------------------------------------------------------------- /samples/video/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raulnguyen/SuperResolution/HEAD/samples/video/main.cpp --------------------------------------------------------------------------------