├── .gitignore ├── LICENSE ├── README.md ├── bin ├── FreeImage.dll ├── Plugins │ └── orsGDALDriver.dll ├── Qt5Core.dll ├── Qt5Gui.dll ├── Qt5OpenGL.dll ├── Qt5Qml.dll ├── Qt5Widgets.dll ├── Qt5Xml.dll ├── ceres.dll ├── cudart64_101.dll ├── etc │ └── gdal_data │ │ ├── GDALLogoBW.svg │ │ ├── GDALLogoColor.svg │ │ ├── GDALLogoGS.svg │ │ ├── LICENSE.TXT │ │ ├── compdcs.csv │ │ ├── coordinate_axis.csv │ │ ├── cubewerx_extra.wkt │ │ ├── datum_shift.csv │ │ ├── ecw_cs.wkt │ │ ├── ellipsoid.csv │ │ ├── epsg.wkt │ │ ├── esri_StatePlane_extra.wkt │ │ ├── esri_Wisconsin_extra.wkt │ │ ├── esri_extra.wkt │ │ ├── gcs.csv │ │ ├── gcs.override.csv │ │ ├── gdal_datum.csv │ │ ├── gdalicon.png │ │ ├── gdalvrt.xsd │ │ ├── geoccs.csv │ │ ├── gml_registry.xml │ │ ├── gt_datum.csv │ │ ├── gt_ellips.csv │ │ ├── header.dxf │ │ ├── inspire_cp_BasicPropertyUnit.gfs │ │ ├── inspire_cp_CadastralBoundary.gfs │ │ ├── inspire_cp_CadastralParcel.gfs │ │ ├── inspire_cp_CadastralZoning.gfs │ │ ├── nitf_spec.xml │ │ ├── nitf_spec.xsd │ │ ├── ogrvrt.xsd │ │ ├── osmconf.ini │ │ ├── ozi_datum.csv │ │ ├── ozi_ellips.csv │ │ ├── pci_datum.txt │ │ ├── pci_ellips.txt │ │ ├── pcs.csv │ │ ├── pcs.override.csv │ │ ├── prime_meridian.csv │ │ ├── projop_wparm.csv │ │ ├── ruian_vf_ob_v1.gfs │ │ ├── ruian_vf_st_uvoh_v1.gfs │ │ ├── ruian_vf_st_v1.gfs │ │ ├── ruian_vf_v1.gfs │ │ ├── s57agencies.csv │ │ ├── s57attributes.csv │ │ ├── s57attributes_aml.csv │ │ ├── s57attributes_iw.csv │ │ ├── s57expectedinput.csv │ │ ├── s57objectclasses.csv │ │ ├── s57objectclasses_aml.csv │ │ ├── s57objectclasses_iw.csv │ │ ├── seed_2d.dgn │ │ ├── seed_3d.dgn │ │ ├── stateplane.csv │ │ ├── trailer.dxf │ │ ├── unit_of_measure.csv │ │ ├── vertcs.csv │ │ └── vertcs.override.csv ├── faiss.dll ├── gdal213VC141_x64.dll ├── gflags.dll ├── glew64.dll ├── glog.dll ├── glut64.dll ├── gmock.dll ├── gmock_main.dll ├── gtest.dll ├── gtest_main.dll ├── igraph.dll ├── jsonsfmx.exe ├── libamd.dll ├── libblas.dll ├── libbtf.dll ├── libcamd.dll ├── libccolamd.dll ├── libcholmod.dll ├── libcolamd.dll ├── libconfig++.dll ├── libcxsparse.dll ├── libgcc_s_seh-1.dll ├── libgcc_s_sjlj-1.dll ├── libgfortran-3.dll ├── libgfortran-5.dll ├── libgmp-10.dll ├── libklu.dll ├── liblapack.dll ├── libldl.dll ├── libmpfr-4.dll ├── libquadmath-0.dll ├── libspqr.dll ├── libumfpack.dll ├── libwinpthread-1.dll ├── lz4.dll ├── modules │ ├── orsImage.dll │ ├── orsImageGeometry.dll │ └── orsSRS.dll ├── msvcp140.dll ├── openblas.dll ├── orsBase.dll ├── platforms │ ├── qdirect2d.dll │ ├── qminimal.dll │ ├── qoffscreen.dll │ └── qwindows.dll ├── proj49VC141_x64.dll ├── sqlite3.dll ├── tbb.dll ├── tbbmalloc.dll ├── ucrtbase.dll ├── ucrtbased.dll ├── vcomp140.dll ├── vcruntime140.dll └── vcruntime140d.dll ├── doc └── sfm-8w.png └── test ├── codebook.bin └── group.r3m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/README.md -------------------------------------------------------------------------------- /bin/FreeImage.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/FreeImage.dll -------------------------------------------------------------------------------- /bin/Plugins/orsGDALDriver.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/Plugins/orsGDALDriver.dll -------------------------------------------------------------------------------- /bin/Qt5Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/Qt5Core.dll -------------------------------------------------------------------------------- /bin/Qt5Gui.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/Qt5Gui.dll -------------------------------------------------------------------------------- /bin/Qt5OpenGL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/Qt5OpenGL.dll -------------------------------------------------------------------------------- /bin/Qt5Qml.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/Qt5Qml.dll -------------------------------------------------------------------------------- /bin/Qt5Widgets.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/Qt5Widgets.dll -------------------------------------------------------------------------------- /bin/Qt5Xml.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/Qt5Xml.dll -------------------------------------------------------------------------------- /bin/ceres.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/ceres.dll -------------------------------------------------------------------------------- /bin/cudart64_101.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/cudart64_101.dll -------------------------------------------------------------------------------- /bin/etc/gdal_data/GDALLogoBW.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/etc/gdal_data/GDALLogoBW.svg -------------------------------------------------------------------------------- /bin/etc/gdal_data/GDALLogoColor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/etc/gdal_data/GDALLogoColor.svg -------------------------------------------------------------------------------- /bin/etc/gdal_data/GDALLogoGS.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/etc/gdal_data/GDALLogoGS.svg -------------------------------------------------------------------------------- /bin/etc/gdal_data/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/etc/gdal_data/LICENSE.TXT -------------------------------------------------------------------------------- /bin/etc/gdal_data/compdcs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/etc/gdal_data/compdcs.csv -------------------------------------------------------------------------------- /bin/etc/gdal_data/coordinate_axis.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/etc/gdal_data/coordinate_axis.csv -------------------------------------------------------------------------------- /bin/etc/gdal_data/cubewerx_extra.wkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/etc/gdal_data/cubewerx_extra.wkt -------------------------------------------------------------------------------- /bin/etc/gdal_data/datum_shift.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/etc/gdal_data/datum_shift.csv -------------------------------------------------------------------------------- /bin/etc/gdal_data/ecw_cs.wkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/etc/gdal_data/ecw_cs.wkt -------------------------------------------------------------------------------- /bin/etc/gdal_data/ellipsoid.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/etc/gdal_data/ellipsoid.csv -------------------------------------------------------------------------------- /bin/etc/gdal_data/epsg.wkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/etc/gdal_data/epsg.wkt -------------------------------------------------------------------------------- /bin/etc/gdal_data/esri_StatePlane_extra.wkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/etc/gdal_data/esri_StatePlane_extra.wkt -------------------------------------------------------------------------------- /bin/etc/gdal_data/esri_Wisconsin_extra.wkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/etc/gdal_data/esri_Wisconsin_extra.wkt -------------------------------------------------------------------------------- /bin/etc/gdal_data/esri_extra.wkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/etc/gdal_data/esri_extra.wkt -------------------------------------------------------------------------------- /bin/etc/gdal_data/gcs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/etc/gdal_data/gcs.csv -------------------------------------------------------------------------------- /bin/etc/gdal_data/gcs.override.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/etc/gdal_data/gcs.override.csv -------------------------------------------------------------------------------- /bin/etc/gdal_data/gdal_datum.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/etc/gdal_data/gdal_datum.csv -------------------------------------------------------------------------------- /bin/etc/gdal_data/gdalicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/etc/gdal_data/gdalicon.png -------------------------------------------------------------------------------- /bin/etc/gdal_data/gdalvrt.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/etc/gdal_data/gdalvrt.xsd -------------------------------------------------------------------------------- /bin/etc/gdal_data/geoccs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/etc/gdal_data/geoccs.csv -------------------------------------------------------------------------------- /bin/etc/gdal_data/gml_registry.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/etc/gdal_data/gml_registry.xml -------------------------------------------------------------------------------- /bin/etc/gdal_data/gt_datum.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/etc/gdal_data/gt_datum.csv -------------------------------------------------------------------------------- /bin/etc/gdal_data/gt_ellips.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/etc/gdal_data/gt_ellips.csv -------------------------------------------------------------------------------- /bin/etc/gdal_data/header.dxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/etc/gdal_data/header.dxf -------------------------------------------------------------------------------- /bin/etc/gdal_data/inspire_cp_BasicPropertyUnit.gfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/etc/gdal_data/inspire_cp_BasicPropertyUnit.gfs -------------------------------------------------------------------------------- /bin/etc/gdal_data/inspire_cp_CadastralBoundary.gfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/etc/gdal_data/inspire_cp_CadastralBoundary.gfs -------------------------------------------------------------------------------- /bin/etc/gdal_data/inspire_cp_CadastralParcel.gfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/etc/gdal_data/inspire_cp_CadastralParcel.gfs -------------------------------------------------------------------------------- /bin/etc/gdal_data/inspire_cp_CadastralZoning.gfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/etc/gdal_data/inspire_cp_CadastralZoning.gfs -------------------------------------------------------------------------------- /bin/etc/gdal_data/nitf_spec.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/etc/gdal_data/nitf_spec.xml -------------------------------------------------------------------------------- /bin/etc/gdal_data/nitf_spec.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/etc/gdal_data/nitf_spec.xsd -------------------------------------------------------------------------------- /bin/etc/gdal_data/ogrvrt.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/etc/gdal_data/ogrvrt.xsd -------------------------------------------------------------------------------- /bin/etc/gdal_data/osmconf.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/etc/gdal_data/osmconf.ini -------------------------------------------------------------------------------- /bin/etc/gdal_data/ozi_datum.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/etc/gdal_data/ozi_datum.csv -------------------------------------------------------------------------------- /bin/etc/gdal_data/ozi_ellips.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/etc/gdal_data/ozi_ellips.csv -------------------------------------------------------------------------------- /bin/etc/gdal_data/pci_datum.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/etc/gdal_data/pci_datum.txt -------------------------------------------------------------------------------- /bin/etc/gdal_data/pci_ellips.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/etc/gdal_data/pci_ellips.txt -------------------------------------------------------------------------------- /bin/etc/gdal_data/pcs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/etc/gdal_data/pcs.csv -------------------------------------------------------------------------------- /bin/etc/gdal_data/pcs.override.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/etc/gdal_data/pcs.override.csv -------------------------------------------------------------------------------- /bin/etc/gdal_data/prime_meridian.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/etc/gdal_data/prime_meridian.csv -------------------------------------------------------------------------------- /bin/etc/gdal_data/projop_wparm.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/etc/gdal_data/projop_wparm.csv -------------------------------------------------------------------------------- /bin/etc/gdal_data/ruian_vf_ob_v1.gfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/etc/gdal_data/ruian_vf_ob_v1.gfs -------------------------------------------------------------------------------- /bin/etc/gdal_data/ruian_vf_st_uvoh_v1.gfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/etc/gdal_data/ruian_vf_st_uvoh_v1.gfs -------------------------------------------------------------------------------- /bin/etc/gdal_data/ruian_vf_st_v1.gfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/etc/gdal_data/ruian_vf_st_v1.gfs -------------------------------------------------------------------------------- /bin/etc/gdal_data/ruian_vf_v1.gfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/etc/gdal_data/ruian_vf_v1.gfs -------------------------------------------------------------------------------- /bin/etc/gdal_data/s57agencies.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/etc/gdal_data/s57agencies.csv -------------------------------------------------------------------------------- /bin/etc/gdal_data/s57attributes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/etc/gdal_data/s57attributes.csv -------------------------------------------------------------------------------- /bin/etc/gdal_data/s57attributes_aml.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/etc/gdal_data/s57attributes_aml.csv -------------------------------------------------------------------------------- /bin/etc/gdal_data/s57attributes_iw.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/etc/gdal_data/s57attributes_iw.csv -------------------------------------------------------------------------------- /bin/etc/gdal_data/s57expectedinput.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/etc/gdal_data/s57expectedinput.csv -------------------------------------------------------------------------------- /bin/etc/gdal_data/s57objectclasses.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/etc/gdal_data/s57objectclasses.csv -------------------------------------------------------------------------------- /bin/etc/gdal_data/s57objectclasses_aml.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/etc/gdal_data/s57objectclasses_aml.csv -------------------------------------------------------------------------------- /bin/etc/gdal_data/s57objectclasses_iw.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/etc/gdal_data/s57objectclasses_iw.csv -------------------------------------------------------------------------------- /bin/etc/gdal_data/seed_2d.dgn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/etc/gdal_data/seed_2d.dgn -------------------------------------------------------------------------------- /bin/etc/gdal_data/seed_3d.dgn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/etc/gdal_data/seed_3d.dgn -------------------------------------------------------------------------------- /bin/etc/gdal_data/stateplane.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/etc/gdal_data/stateplane.csv -------------------------------------------------------------------------------- /bin/etc/gdal_data/trailer.dxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/etc/gdal_data/trailer.dxf -------------------------------------------------------------------------------- /bin/etc/gdal_data/unit_of_measure.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/etc/gdal_data/unit_of_measure.csv -------------------------------------------------------------------------------- /bin/etc/gdal_data/vertcs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/etc/gdal_data/vertcs.csv -------------------------------------------------------------------------------- /bin/etc/gdal_data/vertcs.override.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/etc/gdal_data/vertcs.override.csv -------------------------------------------------------------------------------- /bin/faiss.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/faiss.dll -------------------------------------------------------------------------------- /bin/gdal213VC141_x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/gdal213VC141_x64.dll -------------------------------------------------------------------------------- /bin/gflags.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/gflags.dll -------------------------------------------------------------------------------- /bin/glew64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/glew64.dll -------------------------------------------------------------------------------- /bin/glog.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/glog.dll -------------------------------------------------------------------------------- /bin/glut64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/glut64.dll -------------------------------------------------------------------------------- /bin/gmock.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/gmock.dll -------------------------------------------------------------------------------- /bin/gmock_main.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/gmock_main.dll -------------------------------------------------------------------------------- /bin/gtest.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/gtest.dll -------------------------------------------------------------------------------- /bin/gtest_main.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/gtest_main.dll -------------------------------------------------------------------------------- /bin/igraph.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/igraph.dll -------------------------------------------------------------------------------- /bin/jsonsfmx.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/jsonsfmx.exe -------------------------------------------------------------------------------- /bin/libamd.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/libamd.dll -------------------------------------------------------------------------------- /bin/libblas.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/libblas.dll -------------------------------------------------------------------------------- /bin/libbtf.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/libbtf.dll -------------------------------------------------------------------------------- /bin/libcamd.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/libcamd.dll -------------------------------------------------------------------------------- /bin/libccolamd.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/libccolamd.dll -------------------------------------------------------------------------------- /bin/libcholmod.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/libcholmod.dll -------------------------------------------------------------------------------- /bin/libcolamd.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/libcolamd.dll -------------------------------------------------------------------------------- /bin/libconfig++.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/libconfig++.dll -------------------------------------------------------------------------------- /bin/libcxsparse.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/libcxsparse.dll -------------------------------------------------------------------------------- /bin/libgcc_s_seh-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/libgcc_s_seh-1.dll -------------------------------------------------------------------------------- /bin/libgcc_s_sjlj-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/libgcc_s_sjlj-1.dll -------------------------------------------------------------------------------- /bin/libgfortran-3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/libgfortran-3.dll -------------------------------------------------------------------------------- /bin/libgfortran-5.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/libgfortran-5.dll -------------------------------------------------------------------------------- /bin/libgmp-10.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/libgmp-10.dll -------------------------------------------------------------------------------- /bin/libklu.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/libklu.dll -------------------------------------------------------------------------------- /bin/liblapack.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/liblapack.dll -------------------------------------------------------------------------------- /bin/libldl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/libldl.dll -------------------------------------------------------------------------------- /bin/libmpfr-4.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/libmpfr-4.dll -------------------------------------------------------------------------------- /bin/libquadmath-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/libquadmath-0.dll -------------------------------------------------------------------------------- /bin/libspqr.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/libspqr.dll -------------------------------------------------------------------------------- /bin/libumfpack.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/libumfpack.dll -------------------------------------------------------------------------------- /bin/libwinpthread-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/libwinpthread-1.dll -------------------------------------------------------------------------------- /bin/lz4.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/lz4.dll -------------------------------------------------------------------------------- /bin/modules/orsImage.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/modules/orsImage.dll -------------------------------------------------------------------------------- /bin/modules/orsImageGeometry.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/modules/orsImageGeometry.dll -------------------------------------------------------------------------------- /bin/modules/orsSRS.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/modules/orsSRS.dll -------------------------------------------------------------------------------- /bin/msvcp140.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/msvcp140.dll -------------------------------------------------------------------------------- /bin/openblas.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/openblas.dll -------------------------------------------------------------------------------- /bin/orsBase.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/orsBase.dll -------------------------------------------------------------------------------- /bin/platforms/qdirect2d.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/platforms/qdirect2d.dll -------------------------------------------------------------------------------- /bin/platforms/qminimal.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/platforms/qminimal.dll -------------------------------------------------------------------------------- /bin/platforms/qoffscreen.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/platforms/qoffscreen.dll -------------------------------------------------------------------------------- /bin/platforms/qwindows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/platforms/qwindows.dll -------------------------------------------------------------------------------- /bin/proj49VC141_x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/proj49VC141_x64.dll -------------------------------------------------------------------------------- /bin/sqlite3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/sqlite3.dll -------------------------------------------------------------------------------- /bin/tbb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/tbb.dll -------------------------------------------------------------------------------- /bin/tbbmalloc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/tbbmalloc.dll -------------------------------------------------------------------------------- /bin/ucrtbase.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/ucrtbase.dll -------------------------------------------------------------------------------- /bin/ucrtbased.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/ucrtbased.dll -------------------------------------------------------------------------------- /bin/vcomp140.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/vcomp140.dll -------------------------------------------------------------------------------- /bin/vcruntime140.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/vcruntime140.dll -------------------------------------------------------------------------------- /bin/vcruntime140d.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/bin/vcruntime140d.dll -------------------------------------------------------------------------------- /doc/sfm-8w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/doc/sfm-8w.png -------------------------------------------------------------------------------- /test/codebook.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/test/codebook.bin -------------------------------------------------------------------------------- /test/group.r3m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json87/ParallelSfM/HEAD/test/group.r3m --------------------------------------------------------------------------------