├── .travis.yml ├── CMakeLists.txt ├── LICENSE.txt ├── README.md ├── include ├── DUtils │ ├── BinaryFile.h │ ├── ConfigFile.h │ ├── DException.h │ ├── DUtils.h │ ├── DebugFunctions.h │ ├── FileFunctions.h │ ├── FileModes.h │ ├── LUT.h │ ├── LineFile.h │ ├── Math.hpp │ ├── Profiler.h │ ├── Random.h │ ├── STL.h │ ├── StringFunctions.h │ ├── TimeManager.h │ ├── Timestamp.h │ └── dirent_win.h ├── DUtilsCV │ ├── DUtilsCV.h │ ├── Drawing.h │ ├── GUI.h │ ├── Geometry.h │ ├── IO.h │ ├── Mat.h │ ├── Transformations.h │ └── Types.h └── DVision │ ├── BRIEF.h │ ├── BRIEF256.h │ ├── BundleCamera.h │ ├── DVision.h │ ├── FSolver.h │ ├── HSolver.h │ ├── ImageFunctions.h │ ├── Matches.h │ ├── PLYFile.h │ ├── PMVSCamera.h │ ├── PatchFile.h │ └── PixelPointFile.h └── src ├── DLib.cmake.in ├── DUtils ├── BinaryFile.cpp ├── ConfigFile.cpp ├── DebugFunctions.cpp ├── FileFunctions.cpp ├── LUT.cpp ├── LineFile.cpp ├── Profiler.cpp ├── Random.cpp ├── StringFunctions.cpp ├── TimeManager.cpp └── Timestamp.cpp ├── DUtilsCV ├── Drawing.cpp ├── GUI.cpp ├── Geometry.cpp ├── IO.cpp ├── Mat.cpp ├── Transformations.cpp └── Types.cpp └── DVision ├── BRIEF.cpp ├── BundleCamera.cpp ├── FSolver.cpp ├── HSolver.cpp ├── ImageFunctions.cpp ├── Matches.cpp ├── PLYFile.cpp ├── PMVSCamera.cpp ├── PatchFile.cpp └── PixelPointFile.cpp /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorian3d/DLib/HEAD/.travis.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorian3d/DLib/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorian3d/DLib/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorian3d/DLib/HEAD/README.md -------------------------------------------------------------------------------- /include/DUtils/BinaryFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorian3d/DLib/HEAD/include/DUtils/BinaryFile.h -------------------------------------------------------------------------------- /include/DUtils/ConfigFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorian3d/DLib/HEAD/include/DUtils/ConfigFile.h -------------------------------------------------------------------------------- /include/DUtils/DException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorian3d/DLib/HEAD/include/DUtils/DException.h -------------------------------------------------------------------------------- /include/DUtils/DUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorian3d/DLib/HEAD/include/DUtils/DUtils.h -------------------------------------------------------------------------------- /include/DUtils/DebugFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorian3d/DLib/HEAD/include/DUtils/DebugFunctions.h -------------------------------------------------------------------------------- /include/DUtils/FileFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorian3d/DLib/HEAD/include/DUtils/FileFunctions.h -------------------------------------------------------------------------------- /include/DUtils/FileModes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorian3d/DLib/HEAD/include/DUtils/FileModes.h -------------------------------------------------------------------------------- /include/DUtils/LUT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorian3d/DLib/HEAD/include/DUtils/LUT.h -------------------------------------------------------------------------------- /include/DUtils/LineFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorian3d/DLib/HEAD/include/DUtils/LineFile.h -------------------------------------------------------------------------------- /include/DUtils/Math.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorian3d/DLib/HEAD/include/DUtils/Math.hpp -------------------------------------------------------------------------------- /include/DUtils/Profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorian3d/DLib/HEAD/include/DUtils/Profiler.h -------------------------------------------------------------------------------- /include/DUtils/Random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorian3d/DLib/HEAD/include/DUtils/Random.h -------------------------------------------------------------------------------- /include/DUtils/STL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorian3d/DLib/HEAD/include/DUtils/STL.h -------------------------------------------------------------------------------- /include/DUtils/StringFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorian3d/DLib/HEAD/include/DUtils/StringFunctions.h -------------------------------------------------------------------------------- /include/DUtils/TimeManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorian3d/DLib/HEAD/include/DUtils/TimeManager.h -------------------------------------------------------------------------------- /include/DUtils/Timestamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorian3d/DLib/HEAD/include/DUtils/Timestamp.h -------------------------------------------------------------------------------- /include/DUtils/dirent_win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorian3d/DLib/HEAD/include/DUtils/dirent_win.h -------------------------------------------------------------------------------- /include/DUtilsCV/DUtilsCV.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorian3d/DLib/HEAD/include/DUtilsCV/DUtilsCV.h -------------------------------------------------------------------------------- /include/DUtilsCV/Drawing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorian3d/DLib/HEAD/include/DUtilsCV/Drawing.h -------------------------------------------------------------------------------- /include/DUtilsCV/GUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorian3d/DLib/HEAD/include/DUtilsCV/GUI.h -------------------------------------------------------------------------------- /include/DUtilsCV/Geometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorian3d/DLib/HEAD/include/DUtilsCV/Geometry.h -------------------------------------------------------------------------------- /include/DUtilsCV/IO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorian3d/DLib/HEAD/include/DUtilsCV/IO.h -------------------------------------------------------------------------------- /include/DUtilsCV/Mat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorian3d/DLib/HEAD/include/DUtilsCV/Mat.h -------------------------------------------------------------------------------- /include/DUtilsCV/Transformations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorian3d/DLib/HEAD/include/DUtilsCV/Transformations.h -------------------------------------------------------------------------------- /include/DUtilsCV/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorian3d/DLib/HEAD/include/DUtilsCV/Types.h -------------------------------------------------------------------------------- /include/DVision/BRIEF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorian3d/DLib/HEAD/include/DVision/BRIEF.h -------------------------------------------------------------------------------- /include/DVision/BRIEF256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorian3d/DLib/HEAD/include/DVision/BRIEF256.h -------------------------------------------------------------------------------- /include/DVision/BundleCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorian3d/DLib/HEAD/include/DVision/BundleCamera.h -------------------------------------------------------------------------------- /include/DVision/DVision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorian3d/DLib/HEAD/include/DVision/DVision.h -------------------------------------------------------------------------------- /include/DVision/FSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorian3d/DLib/HEAD/include/DVision/FSolver.h -------------------------------------------------------------------------------- /include/DVision/HSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorian3d/DLib/HEAD/include/DVision/HSolver.h -------------------------------------------------------------------------------- /include/DVision/ImageFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorian3d/DLib/HEAD/include/DVision/ImageFunctions.h -------------------------------------------------------------------------------- /include/DVision/Matches.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorian3d/DLib/HEAD/include/DVision/Matches.h -------------------------------------------------------------------------------- /include/DVision/PLYFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorian3d/DLib/HEAD/include/DVision/PLYFile.h -------------------------------------------------------------------------------- /include/DVision/PMVSCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorian3d/DLib/HEAD/include/DVision/PMVSCamera.h -------------------------------------------------------------------------------- /include/DVision/PatchFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorian3d/DLib/HEAD/include/DVision/PatchFile.h -------------------------------------------------------------------------------- /include/DVision/PixelPointFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorian3d/DLib/HEAD/include/DVision/PixelPointFile.h -------------------------------------------------------------------------------- /src/DLib.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorian3d/DLib/HEAD/src/DLib.cmake.in -------------------------------------------------------------------------------- /src/DUtils/BinaryFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorian3d/DLib/HEAD/src/DUtils/BinaryFile.cpp -------------------------------------------------------------------------------- /src/DUtils/ConfigFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorian3d/DLib/HEAD/src/DUtils/ConfigFile.cpp -------------------------------------------------------------------------------- /src/DUtils/DebugFunctions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorian3d/DLib/HEAD/src/DUtils/DebugFunctions.cpp -------------------------------------------------------------------------------- /src/DUtils/FileFunctions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorian3d/DLib/HEAD/src/DUtils/FileFunctions.cpp -------------------------------------------------------------------------------- /src/DUtils/LUT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorian3d/DLib/HEAD/src/DUtils/LUT.cpp -------------------------------------------------------------------------------- /src/DUtils/LineFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorian3d/DLib/HEAD/src/DUtils/LineFile.cpp -------------------------------------------------------------------------------- /src/DUtils/Profiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorian3d/DLib/HEAD/src/DUtils/Profiler.cpp -------------------------------------------------------------------------------- /src/DUtils/Random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorian3d/DLib/HEAD/src/DUtils/Random.cpp -------------------------------------------------------------------------------- /src/DUtils/StringFunctions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorian3d/DLib/HEAD/src/DUtils/StringFunctions.cpp -------------------------------------------------------------------------------- /src/DUtils/TimeManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorian3d/DLib/HEAD/src/DUtils/TimeManager.cpp -------------------------------------------------------------------------------- /src/DUtils/Timestamp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorian3d/DLib/HEAD/src/DUtils/Timestamp.cpp -------------------------------------------------------------------------------- /src/DUtilsCV/Drawing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorian3d/DLib/HEAD/src/DUtilsCV/Drawing.cpp -------------------------------------------------------------------------------- /src/DUtilsCV/GUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorian3d/DLib/HEAD/src/DUtilsCV/GUI.cpp -------------------------------------------------------------------------------- /src/DUtilsCV/Geometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorian3d/DLib/HEAD/src/DUtilsCV/Geometry.cpp -------------------------------------------------------------------------------- /src/DUtilsCV/IO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorian3d/DLib/HEAD/src/DUtilsCV/IO.cpp -------------------------------------------------------------------------------- /src/DUtilsCV/Mat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorian3d/DLib/HEAD/src/DUtilsCV/Mat.cpp -------------------------------------------------------------------------------- /src/DUtilsCV/Transformations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorian3d/DLib/HEAD/src/DUtilsCV/Transformations.cpp -------------------------------------------------------------------------------- /src/DUtilsCV/Types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorian3d/DLib/HEAD/src/DUtilsCV/Types.cpp -------------------------------------------------------------------------------- /src/DVision/BRIEF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorian3d/DLib/HEAD/src/DVision/BRIEF.cpp -------------------------------------------------------------------------------- /src/DVision/BundleCamera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorian3d/DLib/HEAD/src/DVision/BundleCamera.cpp -------------------------------------------------------------------------------- /src/DVision/FSolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorian3d/DLib/HEAD/src/DVision/FSolver.cpp -------------------------------------------------------------------------------- /src/DVision/HSolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorian3d/DLib/HEAD/src/DVision/HSolver.cpp -------------------------------------------------------------------------------- /src/DVision/ImageFunctions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorian3d/DLib/HEAD/src/DVision/ImageFunctions.cpp -------------------------------------------------------------------------------- /src/DVision/Matches.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorian3d/DLib/HEAD/src/DVision/Matches.cpp -------------------------------------------------------------------------------- /src/DVision/PLYFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorian3d/DLib/HEAD/src/DVision/PLYFile.cpp -------------------------------------------------------------------------------- /src/DVision/PMVSCamera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorian3d/DLib/HEAD/src/DVision/PMVSCamera.cpp -------------------------------------------------------------------------------- /src/DVision/PatchFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorian3d/DLib/HEAD/src/DVision/PatchFile.cpp -------------------------------------------------------------------------------- /src/DVision/PixelPointFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorian3d/DLib/HEAD/src/DVision/PixelPointFile.cpp --------------------------------------------------------------------------------