├── .clang-format ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── question_help.md ├── actions │ └── build-config │ │ └── action.yml ├── pull_request_template.md ├── scripts │ ├── build-linux.sh │ └── build-windows.ps1 ├── stale.yml └── workflows │ ├── README.md │ └── continuous-integration.yml ├── .gitignore ├── .markdownlint.json ├── .readthedocs.yml ├── .travis.yml ├── CHANGES.md ├── CMakeLists.txt ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── COPYING.md ├── Dockerfile ├── Dockerfile_deps ├── README.md ├── cmake ├── Config.cmake.in ├── FindSphinx.cmake ├── cmake_uninstall.cmake.in ├── sift_config.h.in └── version.hpp.in ├── doc ├── CMakeLists.txt └── sphinx │ ├── Makefile │ ├── make.bat │ ├── requirements.txt │ └── source │ ├── Doxyfile │ ├── about │ └── about.rst │ ├── api │ ├── api.rst │ └── usage.rst │ ├── biblio.bib │ ├── bibliography.rst │ ├── conf.py │ ├── index.rst │ └── install │ └── install.rst ├── src ├── CMakeLists.txt ├── application │ ├── CMakeLists.txt │ ├── main.cpp │ ├── match.cpp │ ├── pgmread.cpp │ └── pgmread.h └── popsift │ ├── clamp.h │ ├── common │ ├── assist.cu │ ├── assist.h │ ├── clamp.h │ ├── debug_macros.cu │ ├── debug_macros.h │ ├── device_prop.cu │ ├── device_prop.h │ ├── excl_blk_prefix_sum.h │ ├── plane_2d.cu │ ├── plane_2d.h │ ├── sync_queue.h │ ├── vec_macros.h │ ├── warp_bitonic_sort.h │ ├── write_plane_2d.cu │ └── write_plane_2d.h │ ├── features.cu │ ├── features.h │ ├── gauss_filter.cu │ ├── gauss_filter.h │ ├── popsift.cu │ ├── popsift.h │ ├── s_desc_grid.cu │ ├── s_desc_grid.h │ ├── s_desc_igrid.cu │ ├── s_desc_igrid.h │ ├── s_desc_iloop.cu │ ├── s_desc_iloop.h │ ├── s_desc_loop.cu │ ├── s_desc_loop.h │ ├── s_desc_norm_l2.h │ ├── s_desc_norm_rs.h │ ├── s_desc_normalize.h │ ├── s_desc_notile.cu │ ├── s_desc_notile.h │ ├── s_desc_vlfeat.cu │ ├── s_desc_vlfeat.h │ ├── s_extrema.cu │ ├── s_filtergrid.cu │ ├── s_gradiant.h │ ├── s_image.cu │ ├── s_image.h │ ├── s_orientation.cu │ ├── s_pyramid_build.cu │ ├── s_pyramid_build_aa.cu │ ├── s_pyramid_build_aa.h │ ├── s_pyramid_build_ai.cu │ ├── s_pyramid_build_ai.h │ ├── s_pyramid_build_ra.cu │ ├── s_pyramid_build_ra.h │ ├── s_pyramid_fixed.cu │ ├── s_solve.h │ ├── sift_conf.cu │ ├── sift_conf.h │ ├── sift_constants.cu │ ├── sift_constants.h │ ├── sift_desc.cu │ ├── sift_extremum.cu │ ├── sift_extremum.h │ ├── sift_octave.cu │ ├── sift_octave.h │ ├── sift_pyramid.cu │ └── sift_pyramid.h ├── testImages ├── box-12x12.pgm ├── box-6x6.pgm └── input-in-bytes.pgm ├── testScripts ├── CMakeLists.txt ├── TEST.sh.in ├── downloadOxfordDataset.sh.in └── testOxfordDataset.sh.in └── vcpkg.json /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question_help.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/.github/ISSUE_TEMPLATE/question_help.md -------------------------------------------------------------------------------- /.github/actions/build-config/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/.github/actions/build-config/action.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/scripts/build-linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/.github/scripts/build-linux.sh -------------------------------------------------------------------------------- /.github/scripts/build-windows.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/.github/scripts/build-windows.ps1 -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/.github/workflows/README.md -------------------------------------------------------------------------------- /.github/workflows/continuous-integration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/.github/workflows/continuous-integration.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/.gitignore -------------------------------------------------------------------------------- /.markdownlint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/.markdownlint.json -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/CHANGES.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/COPYING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dockerfile_deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/Dockerfile_deps -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/README.md -------------------------------------------------------------------------------- /cmake/Config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/cmake/Config.cmake.in -------------------------------------------------------------------------------- /cmake/FindSphinx.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/cmake/FindSphinx.cmake -------------------------------------------------------------------------------- /cmake/cmake_uninstall.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/cmake/cmake_uninstall.cmake.in -------------------------------------------------------------------------------- /cmake/sift_config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/cmake/sift_config.h.in -------------------------------------------------------------------------------- /cmake/version.hpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/cmake/version.hpp.in -------------------------------------------------------------------------------- /doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/doc/CMakeLists.txt -------------------------------------------------------------------------------- /doc/sphinx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/doc/sphinx/Makefile -------------------------------------------------------------------------------- /doc/sphinx/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/doc/sphinx/make.bat -------------------------------------------------------------------------------- /doc/sphinx/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/doc/sphinx/requirements.txt -------------------------------------------------------------------------------- /doc/sphinx/source/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/doc/sphinx/source/Doxyfile -------------------------------------------------------------------------------- /doc/sphinx/source/about/about.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/doc/sphinx/source/about/about.rst -------------------------------------------------------------------------------- /doc/sphinx/source/api/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/doc/sphinx/source/api/api.rst -------------------------------------------------------------------------------- /doc/sphinx/source/api/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/doc/sphinx/source/api/usage.rst -------------------------------------------------------------------------------- /doc/sphinx/source/biblio.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/doc/sphinx/source/biblio.bib -------------------------------------------------------------------------------- /doc/sphinx/source/bibliography.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/doc/sphinx/source/bibliography.rst -------------------------------------------------------------------------------- /doc/sphinx/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/doc/sphinx/source/conf.py -------------------------------------------------------------------------------- /doc/sphinx/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/doc/sphinx/source/index.rst -------------------------------------------------------------------------------- /doc/sphinx/source/install/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/doc/sphinx/source/install/install.rst -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/application/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/src/application/CMakeLists.txt -------------------------------------------------------------------------------- /src/application/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/src/application/main.cpp -------------------------------------------------------------------------------- /src/application/match.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/src/application/match.cpp -------------------------------------------------------------------------------- /src/application/pgmread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/src/application/pgmread.cpp -------------------------------------------------------------------------------- /src/application/pgmread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/src/application/pgmread.h -------------------------------------------------------------------------------- /src/popsift/clamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/src/popsift/clamp.h -------------------------------------------------------------------------------- /src/popsift/common/assist.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/src/popsift/common/assist.cu -------------------------------------------------------------------------------- /src/popsift/common/assist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/src/popsift/common/assist.h -------------------------------------------------------------------------------- /src/popsift/common/clamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/src/popsift/common/clamp.h -------------------------------------------------------------------------------- /src/popsift/common/debug_macros.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/src/popsift/common/debug_macros.cu -------------------------------------------------------------------------------- /src/popsift/common/debug_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/src/popsift/common/debug_macros.h -------------------------------------------------------------------------------- /src/popsift/common/device_prop.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/src/popsift/common/device_prop.cu -------------------------------------------------------------------------------- /src/popsift/common/device_prop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/src/popsift/common/device_prop.h -------------------------------------------------------------------------------- /src/popsift/common/excl_blk_prefix_sum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/src/popsift/common/excl_blk_prefix_sum.h -------------------------------------------------------------------------------- /src/popsift/common/plane_2d.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/src/popsift/common/plane_2d.cu -------------------------------------------------------------------------------- /src/popsift/common/plane_2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/src/popsift/common/plane_2d.h -------------------------------------------------------------------------------- /src/popsift/common/sync_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/src/popsift/common/sync_queue.h -------------------------------------------------------------------------------- /src/popsift/common/vec_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/src/popsift/common/vec_macros.h -------------------------------------------------------------------------------- /src/popsift/common/warp_bitonic_sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/src/popsift/common/warp_bitonic_sort.h -------------------------------------------------------------------------------- /src/popsift/common/write_plane_2d.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/src/popsift/common/write_plane_2d.cu -------------------------------------------------------------------------------- /src/popsift/common/write_plane_2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/src/popsift/common/write_plane_2d.h -------------------------------------------------------------------------------- /src/popsift/features.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/src/popsift/features.cu -------------------------------------------------------------------------------- /src/popsift/features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/src/popsift/features.h -------------------------------------------------------------------------------- /src/popsift/gauss_filter.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/src/popsift/gauss_filter.cu -------------------------------------------------------------------------------- /src/popsift/gauss_filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/src/popsift/gauss_filter.h -------------------------------------------------------------------------------- /src/popsift/popsift.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/src/popsift/popsift.cu -------------------------------------------------------------------------------- /src/popsift/popsift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/src/popsift/popsift.h -------------------------------------------------------------------------------- /src/popsift/s_desc_grid.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/src/popsift/s_desc_grid.cu -------------------------------------------------------------------------------- /src/popsift/s_desc_grid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/src/popsift/s_desc_grid.h -------------------------------------------------------------------------------- /src/popsift/s_desc_igrid.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/src/popsift/s_desc_igrid.cu -------------------------------------------------------------------------------- /src/popsift/s_desc_igrid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/src/popsift/s_desc_igrid.h -------------------------------------------------------------------------------- /src/popsift/s_desc_iloop.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/src/popsift/s_desc_iloop.cu -------------------------------------------------------------------------------- /src/popsift/s_desc_iloop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/src/popsift/s_desc_iloop.h -------------------------------------------------------------------------------- /src/popsift/s_desc_loop.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/src/popsift/s_desc_loop.cu -------------------------------------------------------------------------------- /src/popsift/s_desc_loop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/src/popsift/s_desc_loop.h -------------------------------------------------------------------------------- /src/popsift/s_desc_norm_l2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/src/popsift/s_desc_norm_l2.h -------------------------------------------------------------------------------- /src/popsift/s_desc_norm_rs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/src/popsift/s_desc_norm_rs.h -------------------------------------------------------------------------------- /src/popsift/s_desc_normalize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/src/popsift/s_desc_normalize.h -------------------------------------------------------------------------------- /src/popsift/s_desc_notile.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/src/popsift/s_desc_notile.cu -------------------------------------------------------------------------------- /src/popsift/s_desc_notile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/src/popsift/s_desc_notile.h -------------------------------------------------------------------------------- /src/popsift/s_desc_vlfeat.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/src/popsift/s_desc_vlfeat.cu -------------------------------------------------------------------------------- /src/popsift/s_desc_vlfeat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/src/popsift/s_desc_vlfeat.h -------------------------------------------------------------------------------- /src/popsift/s_extrema.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/src/popsift/s_extrema.cu -------------------------------------------------------------------------------- /src/popsift/s_filtergrid.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/src/popsift/s_filtergrid.cu -------------------------------------------------------------------------------- /src/popsift/s_gradiant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/src/popsift/s_gradiant.h -------------------------------------------------------------------------------- /src/popsift/s_image.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/src/popsift/s_image.cu -------------------------------------------------------------------------------- /src/popsift/s_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/src/popsift/s_image.h -------------------------------------------------------------------------------- /src/popsift/s_orientation.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/src/popsift/s_orientation.cu -------------------------------------------------------------------------------- /src/popsift/s_pyramid_build.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/src/popsift/s_pyramid_build.cu -------------------------------------------------------------------------------- /src/popsift/s_pyramid_build_aa.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/src/popsift/s_pyramid_build_aa.cu -------------------------------------------------------------------------------- /src/popsift/s_pyramid_build_aa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/src/popsift/s_pyramid_build_aa.h -------------------------------------------------------------------------------- /src/popsift/s_pyramid_build_ai.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/src/popsift/s_pyramid_build_ai.cu -------------------------------------------------------------------------------- /src/popsift/s_pyramid_build_ai.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/src/popsift/s_pyramid_build_ai.h -------------------------------------------------------------------------------- /src/popsift/s_pyramid_build_ra.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/src/popsift/s_pyramid_build_ra.cu -------------------------------------------------------------------------------- /src/popsift/s_pyramid_build_ra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/src/popsift/s_pyramid_build_ra.h -------------------------------------------------------------------------------- /src/popsift/s_pyramid_fixed.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/src/popsift/s_pyramid_fixed.cu -------------------------------------------------------------------------------- /src/popsift/s_solve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/src/popsift/s_solve.h -------------------------------------------------------------------------------- /src/popsift/sift_conf.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/src/popsift/sift_conf.cu -------------------------------------------------------------------------------- /src/popsift/sift_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/src/popsift/sift_conf.h -------------------------------------------------------------------------------- /src/popsift/sift_constants.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/src/popsift/sift_constants.cu -------------------------------------------------------------------------------- /src/popsift/sift_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/src/popsift/sift_constants.h -------------------------------------------------------------------------------- /src/popsift/sift_desc.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/src/popsift/sift_desc.cu -------------------------------------------------------------------------------- /src/popsift/sift_extremum.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/src/popsift/sift_extremum.cu -------------------------------------------------------------------------------- /src/popsift/sift_extremum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/src/popsift/sift_extremum.h -------------------------------------------------------------------------------- /src/popsift/sift_octave.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/src/popsift/sift_octave.cu -------------------------------------------------------------------------------- /src/popsift/sift_octave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/src/popsift/sift_octave.h -------------------------------------------------------------------------------- /src/popsift/sift_pyramid.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/src/popsift/sift_pyramid.cu -------------------------------------------------------------------------------- /src/popsift/sift_pyramid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/src/popsift/sift_pyramid.h -------------------------------------------------------------------------------- /testImages/box-12x12.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/testImages/box-12x12.pgm -------------------------------------------------------------------------------- /testImages/box-6x6.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/testImages/box-6x6.pgm -------------------------------------------------------------------------------- /testImages/input-in-bytes.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/testImages/input-in-bytes.pgm -------------------------------------------------------------------------------- /testScripts/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/testScripts/CMakeLists.txt -------------------------------------------------------------------------------- /testScripts/TEST.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/testScripts/TEST.sh.in -------------------------------------------------------------------------------- /testScripts/downloadOxfordDataset.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/testScripts/downloadOxfordDataset.sh.in -------------------------------------------------------------------------------- /testScripts/testOxfordDataset.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/testScripts/testOxfordDataset.sh.in -------------------------------------------------------------------------------- /vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicevision/popsift/HEAD/vcpkg.json --------------------------------------------------------------------------------