├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── LICENSE ├── README.md ├── example.py ├── setup.py ├── src ├── main.cpp ├── popsift.cpp └── popsift.h ├── test.sh └── tests └── test.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDroneMap/pypopsift/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDroneMap/pypopsift/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDroneMap/pypopsift/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDroneMap/pypopsift/HEAD/README.md -------------------------------------------------------------------------------- /example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDroneMap/pypopsift/HEAD/example.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDroneMap/pypopsift/HEAD/setup.py -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDroneMap/pypopsift/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/popsift.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDroneMap/pypopsift/HEAD/src/popsift.cpp -------------------------------------------------------------------------------- /src/popsift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDroneMap/pypopsift/HEAD/src/popsift.h -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | pip install . 4 | python2 example.py 5 | -------------------------------------------------------------------------------- /tests/test.py: -------------------------------------------------------------------------------- 1 | import pypopsift as m 2 | 3 | #assert m.TODO == 3 4 | --------------------------------------------------------------------------------