├── .gitignore ├── LICENSE ├── README.md ├── SFM_example.project ├── SFM_example.workspace ├── compile.sh └── src └── main.cpp /.gitignore: -------------------------------------------------------------------------------- 1 | .codelite 2 | Debug 3 | SFM_example.txt 4 | screenshots 5 | images 6 | desk.zip 7 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nghiaho12/SFM_example/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nghiaho12/SFM_example/HEAD/README.md -------------------------------------------------------------------------------- /SFM_example.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nghiaho12/SFM_example/HEAD/SFM_example.project -------------------------------------------------------------------------------- /SFM_example.workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nghiaho12/SFM_example/HEAD/SFM_example.workspace -------------------------------------------------------------------------------- /compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nghiaho12/SFM_example/HEAD/compile.sh -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nghiaho12/SFM_example/HEAD/src/main.cpp --------------------------------------------------------------------------------