├── .dockerignore ├── .gitignore ├── .gitmodules ├── .travis.yml ├── .zenodo.json ├── CITATION.cff ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── NOTICE ├── README.md ├── attic └── pmpf │ ├── README.md │ ├── Server.java │ ├── example-input │ ├── pmpf │ ├── pmpf-sge-script │ └── run-slave ├── docs ├── docker.md ├── example.md ├── ideas.md ├── images │ ├── example-output.png │ ├── sfm.png │ └── sfm.svg ├── install-ubuntu-14.10.md ├── related_work.md ├── structure_from_motion.md └── tuning_guide.md ├── examples ├── rock-section │ ├── img_0001.jpg │ ├── img_0002.jpg │ ├── img_0003.jpg │ ├── img_0004.jpg │ ├── img_0005.jpg │ ├── img_0006.jpg │ ├── img_0007.jpg │ ├── img_0008.jpg │ ├── img_0009.jpg │ └── img_0010.jpg ├── rock-video │ ├── .gitignore │ └── testvideo.mp4 └── rock │ ├── .gitignore │ ├── img_0001.jpg │ ├── img_0002.jpg │ ├── img_0003.jpg │ ├── img_0004.jpg │ ├── img_0005.jpg │ ├── img_0006.jpg │ ├── img_0007.jpg │ ├── img_0008.jpg │ ├── img_0009.jpg │ ├── img_0010.jpg │ ├── img_0011.jpg │ ├── img_0012.jpg │ ├── img_0013.jpg │ ├── img_0014.jpg │ ├── img_0015.jpg │ ├── img_0016.jpg │ ├── img_0017.jpg │ ├── img_0018.jpg │ ├── img_0019.jpg │ ├── img_0020.jpg │ ├── img_0021.jpg │ ├── img_0022.jpg │ ├── img_0023.jpg │ ├── img_0024.jpg │ ├── img_0025.jpg │ ├── img_0026.jpg │ ├── img_0027.jpg │ ├── img_0028.jpg │ ├── img_0029.jpg │ ├── img_0030.jpg │ ├── img_0031.jpg │ ├── img_0032.jpg │ ├── img_0033.jpg │ ├── img_0034.jpg │ ├── img_0035.jpg │ ├── img_0036.jpg │ ├── img_0037.jpg │ ├── img_0038.jpg │ ├── img_0039.jpg │ ├── img_0040.jpg │ ├── img_0041.jpg │ ├── img_0042.jpg │ ├── img_0043.jpg │ ├── img_0044.jpg │ ├── img_0045.jpg │ ├── img_0046.jpg │ ├── img_0047.jpg │ ├── img_0048.jpg │ ├── img_0049.jpg │ ├── img_0050.jpg │ ├── img_0051.jpg │ ├── img_0052.jpg │ └── img_0053.jpg ├── image-preprocessing ├── README.md ├── cropper │ ├── README.md │ ├── crop-image-sides.sh │ └── testimage │ │ ├── 5x3-squares.jpg │ │ ├── 5x3-squares.png │ │ └── 5x3-squares.svg ├── masker │ ├── README.md │ ├── generate_mask.sh │ └── generate_mask2.sh └── resizer │ ├── README.md │ ├── resize-images.sh │ └── testimage │ ├── 5x3-squares.jpg │ ├── 5x3-squares.png │ └── 5x3-squares.svg ├── images-from-video ├── README.md ├── add-exif-data.py ├── frame-subsetter.py └── frames-extractor.py ├── run-sfm.py └── test ├── README.md ├── density.py ├── number_of_points.py ├── parse_camera_data.m ├── readcams.py ├── test_rock.py └── test_rock_section.py /.dockerignore: -------------------------------------------------------------------------------- 1 | .git 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/.travis.yml -------------------------------------------------------------------------------- /.zenodo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/.zenodo.json -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/CITATION.cff -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/README.md -------------------------------------------------------------------------------- /attic/pmpf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/attic/pmpf/README.md -------------------------------------------------------------------------------- /attic/pmpf/Server.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/attic/pmpf/Server.java -------------------------------------------------------------------------------- /attic/pmpf/example-input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/attic/pmpf/example-input -------------------------------------------------------------------------------- /attic/pmpf/pmpf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/attic/pmpf/pmpf -------------------------------------------------------------------------------- /attic/pmpf/pmpf-sge-script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/attic/pmpf/pmpf-sge-script -------------------------------------------------------------------------------- /attic/pmpf/run-slave: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/attic/pmpf/run-slave -------------------------------------------------------------------------------- /docs/docker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/docs/docker.md -------------------------------------------------------------------------------- /docs/example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/docs/example.md -------------------------------------------------------------------------------- /docs/ideas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/docs/ideas.md -------------------------------------------------------------------------------- /docs/images/example-output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/docs/images/example-output.png -------------------------------------------------------------------------------- /docs/images/sfm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/docs/images/sfm.png -------------------------------------------------------------------------------- /docs/images/sfm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/docs/images/sfm.svg -------------------------------------------------------------------------------- /docs/install-ubuntu-14.10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/docs/install-ubuntu-14.10.md -------------------------------------------------------------------------------- /docs/related_work.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/docs/related_work.md -------------------------------------------------------------------------------- /docs/structure_from_motion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/docs/structure_from_motion.md -------------------------------------------------------------------------------- /docs/tuning_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/docs/tuning_guide.md -------------------------------------------------------------------------------- /examples/rock-section/img_0001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/examples/rock-section/img_0001.jpg -------------------------------------------------------------------------------- /examples/rock-section/img_0002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/examples/rock-section/img_0002.jpg -------------------------------------------------------------------------------- /examples/rock-section/img_0003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/examples/rock-section/img_0003.jpg -------------------------------------------------------------------------------- /examples/rock-section/img_0004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/examples/rock-section/img_0004.jpg -------------------------------------------------------------------------------- /examples/rock-section/img_0005.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/examples/rock-section/img_0005.jpg -------------------------------------------------------------------------------- /examples/rock-section/img_0006.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/examples/rock-section/img_0006.jpg -------------------------------------------------------------------------------- /examples/rock-section/img_0007.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/examples/rock-section/img_0007.jpg -------------------------------------------------------------------------------- /examples/rock-section/img_0008.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/examples/rock-section/img_0008.jpg -------------------------------------------------------------------------------- /examples/rock-section/img_0009.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/examples/rock-section/img_0009.jpg -------------------------------------------------------------------------------- /examples/rock-section/img_0010.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/examples/rock-section/img_0010.jpg -------------------------------------------------------------------------------- /examples/rock-video/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/examples/rock-video/.gitignore -------------------------------------------------------------------------------- /examples/rock-video/testvideo.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/examples/rock-video/testvideo.mp4 -------------------------------------------------------------------------------- /examples/rock/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/examples/rock/.gitignore -------------------------------------------------------------------------------- /examples/rock/img_0001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/examples/rock/img_0001.jpg -------------------------------------------------------------------------------- /examples/rock/img_0002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/examples/rock/img_0002.jpg -------------------------------------------------------------------------------- /examples/rock/img_0003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/examples/rock/img_0003.jpg -------------------------------------------------------------------------------- /examples/rock/img_0004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/examples/rock/img_0004.jpg -------------------------------------------------------------------------------- /examples/rock/img_0005.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/examples/rock/img_0005.jpg -------------------------------------------------------------------------------- /examples/rock/img_0006.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/examples/rock/img_0006.jpg -------------------------------------------------------------------------------- /examples/rock/img_0007.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/examples/rock/img_0007.jpg -------------------------------------------------------------------------------- /examples/rock/img_0008.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/examples/rock/img_0008.jpg -------------------------------------------------------------------------------- /examples/rock/img_0009.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/examples/rock/img_0009.jpg -------------------------------------------------------------------------------- /examples/rock/img_0010.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/examples/rock/img_0010.jpg -------------------------------------------------------------------------------- /examples/rock/img_0011.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/examples/rock/img_0011.jpg -------------------------------------------------------------------------------- /examples/rock/img_0012.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/examples/rock/img_0012.jpg -------------------------------------------------------------------------------- /examples/rock/img_0013.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/examples/rock/img_0013.jpg -------------------------------------------------------------------------------- /examples/rock/img_0014.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/examples/rock/img_0014.jpg -------------------------------------------------------------------------------- /examples/rock/img_0015.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/examples/rock/img_0015.jpg -------------------------------------------------------------------------------- /examples/rock/img_0016.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/examples/rock/img_0016.jpg -------------------------------------------------------------------------------- /examples/rock/img_0017.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/examples/rock/img_0017.jpg -------------------------------------------------------------------------------- /examples/rock/img_0018.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/examples/rock/img_0018.jpg -------------------------------------------------------------------------------- /examples/rock/img_0019.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/examples/rock/img_0019.jpg -------------------------------------------------------------------------------- /examples/rock/img_0020.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/examples/rock/img_0020.jpg -------------------------------------------------------------------------------- /examples/rock/img_0021.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/examples/rock/img_0021.jpg -------------------------------------------------------------------------------- /examples/rock/img_0022.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/examples/rock/img_0022.jpg -------------------------------------------------------------------------------- /examples/rock/img_0023.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/examples/rock/img_0023.jpg -------------------------------------------------------------------------------- /examples/rock/img_0024.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/examples/rock/img_0024.jpg -------------------------------------------------------------------------------- /examples/rock/img_0025.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/examples/rock/img_0025.jpg -------------------------------------------------------------------------------- /examples/rock/img_0026.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/examples/rock/img_0026.jpg -------------------------------------------------------------------------------- /examples/rock/img_0027.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/examples/rock/img_0027.jpg -------------------------------------------------------------------------------- /examples/rock/img_0028.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/examples/rock/img_0028.jpg -------------------------------------------------------------------------------- /examples/rock/img_0029.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/examples/rock/img_0029.jpg -------------------------------------------------------------------------------- /examples/rock/img_0030.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/examples/rock/img_0030.jpg -------------------------------------------------------------------------------- /examples/rock/img_0031.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/examples/rock/img_0031.jpg -------------------------------------------------------------------------------- /examples/rock/img_0032.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/examples/rock/img_0032.jpg -------------------------------------------------------------------------------- /examples/rock/img_0033.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/examples/rock/img_0033.jpg -------------------------------------------------------------------------------- /examples/rock/img_0034.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/examples/rock/img_0034.jpg -------------------------------------------------------------------------------- /examples/rock/img_0035.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/examples/rock/img_0035.jpg -------------------------------------------------------------------------------- /examples/rock/img_0036.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/examples/rock/img_0036.jpg -------------------------------------------------------------------------------- /examples/rock/img_0037.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/examples/rock/img_0037.jpg -------------------------------------------------------------------------------- /examples/rock/img_0038.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/examples/rock/img_0038.jpg -------------------------------------------------------------------------------- /examples/rock/img_0039.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/examples/rock/img_0039.jpg -------------------------------------------------------------------------------- /examples/rock/img_0040.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/examples/rock/img_0040.jpg -------------------------------------------------------------------------------- /examples/rock/img_0041.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/examples/rock/img_0041.jpg -------------------------------------------------------------------------------- /examples/rock/img_0042.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/examples/rock/img_0042.jpg -------------------------------------------------------------------------------- /examples/rock/img_0043.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/examples/rock/img_0043.jpg -------------------------------------------------------------------------------- /examples/rock/img_0044.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/examples/rock/img_0044.jpg -------------------------------------------------------------------------------- /examples/rock/img_0045.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/examples/rock/img_0045.jpg -------------------------------------------------------------------------------- /examples/rock/img_0046.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/examples/rock/img_0046.jpg -------------------------------------------------------------------------------- /examples/rock/img_0047.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/examples/rock/img_0047.jpg -------------------------------------------------------------------------------- /examples/rock/img_0048.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/examples/rock/img_0048.jpg -------------------------------------------------------------------------------- /examples/rock/img_0049.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/examples/rock/img_0049.jpg -------------------------------------------------------------------------------- /examples/rock/img_0050.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/examples/rock/img_0050.jpg -------------------------------------------------------------------------------- /examples/rock/img_0051.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/examples/rock/img_0051.jpg -------------------------------------------------------------------------------- /examples/rock/img_0052.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/examples/rock/img_0052.jpg -------------------------------------------------------------------------------- /examples/rock/img_0053.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/examples/rock/img_0053.jpg -------------------------------------------------------------------------------- /image-preprocessing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/image-preprocessing/README.md -------------------------------------------------------------------------------- /image-preprocessing/cropper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/image-preprocessing/cropper/README.md -------------------------------------------------------------------------------- /image-preprocessing/cropper/crop-image-sides.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/image-preprocessing/cropper/crop-image-sides.sh -------------------------------------------------------------------------------- /image-preprocessing/cropper/testimage/5x3-squares.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/image-preprocessing/cropper/testimage/5x3-squares.jpg -------------------------------------------------------------------------------- /image-preprocessing/cropper/testimage/5x3-squares.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/image-preprocessing/cropper/testimage/5x3-squares.png -------------------------------------------------------------------------------- /image-preprocessing/cropper/testimage/5x3-squares.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/image-preprocessing/cropper/testimage/5x3-squares.svg -------------------------------------------------------------------------------- /image-preprocessing/masker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/image-preprocessing/masker/README.md -------------------------------------------------------------------------------- /image-preprocessing/masker/generate_mask.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/image-preprocessing/masker/generate_mask.sh -------------------------------------------------------------------------------- /image-preprocessing/masker/generate_mask2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/image-preprocessing/masker/generate_mask2.sh -------------------------------------------------------------------------------- /image-preprocessing/resizer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/image-preprocessing/resizer/README.md -------------------------------------------------------------------------------- /image-preprocessing/resizer/resize-images.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/image-preprocessing/resizer/resize-images.sh -------------------------------------------------------------------------------- /image-preprocessing/resizer/testimage/5x3-squares.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/image-preprocessing/resizer/testimage/5x3-squares.jpg -------------------------------------------------------------------------------- /image-preprocessing/resizer/testimage/5x3-squares.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/image-preprocessing/resizer/testimage/5x3-squares.png -------------------------------------------------------------------------------- /image-preprocessing/resizer/testimage/5x3-squares.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/image-preprocessing/resizer/testimage/5x3-squares.svg -------------------------------------------------------------------------------- /images-from-video/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/images-from-video/README.md -------------------------------------------------------------------------------- /images-from-video/add-exif-data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/images-from-video/add-exif-data.py -------------------------------------------------------------------------------- /images-from-video/frame-subsetter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/images-from-video/frame-subsetter.py -------------------------------------------------------------------------------- /images-from-video/frames-extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/images-from-video/frames-extractor.py -------------------------------------------------------------------------------- /run-sfm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/run-sfm.py -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- 1 | test dir 2 | -------------------------------------------------------------------------------- /test/density.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/test/density.py -------------------------------------------------------------------------------- /test/number_of_points.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/test/number_of_points.py -------------------------------------------------------------------------------- /test/parse_camera_data.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/test/parse_camera_data.m -------------------------------------------------------------------------------- /test/readcams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/test/readcams.py -------------------------------------------------------------------------------- /test/test_rock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/test/test_rock.py -------------------------------------------------------------------------------- /test/test_rock_section.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLeSC/structure-from-motion/HEAD/test/test_rock_section.py --------------------------------------------------------------------------------