在好例子网,分享、交流、成长!
您当前所在位置:首页C/C++ 开发实例图形和图像处理 → 三维重建colmap源码

三维重建colmap源码

图形和图像处理

下载此实例
  • 开发语言:C/C++
  • 实例大小:3.80M
  • 下载次数:12
  • 浏览次数:91
  • 发布时间:2023-04-01
  • 实例类别:图形和图像处理
  • 发 布 人:yanyu131588
  • 文件格式:.zip
  • 所需积分:2
 相关标签: MAP MA AP co 三维

实例介绍

【实例简介】三维重建colmap源码

三维重建的入门实例

【实例截图】

from clipboard

【核心代码】

.
├── colmap-dev
│   ├── CHANGELOG.txt
│   ├── CMakeLists.txt
│   ├── CONTRIBUTING.md
│   ├── COPYING.txt
│   ├── README.md
│   ├── cmake
│   │   ├── CMakeConfig.cmake.in
│   │   ├── CMakeConfigVersion.cmake.in
│   │   ├── CMakeHelper.cmake
│   │   ├── CMakeUninstall.cmake.in
│   │   ├── FindEigen3.cmake
│   │   ├── FindFLANN.cmake
│   │   ├── FindFreeImage.cmake
│   │   ├── FindGlew.cmake
│   │   ├── FindGlog.cmake
│   │   ├── FindLZ4.cmake
│   │   ├── FindMetis.cmake
│   │   ├── FindSQLite3.cmake
│   │   ├── GenerateVersionDefinitions.cmake
│   │   └── SelectCudaComputeArch.cmake
│   ├── doc
│   │   ├── COLMAP.desktop
│   │   ├── Makefile
│   │   ├── _build
│   │   │   └── html
│   │   ├── bibliography.rst
│   │   ├── cameras.rst
│   │   ├── changelog.rst
│   │   ├── cli.rst
│   │   ├── colmap.1
│   │   ├── conf.py
│   │   ├── contribution.rst
│   │   ├── database.rst
│   │   ├── datasets.rst
│   │   ├── faq.rst
│   │   ├── format.rst
│   │   ├── gui.rst
│   │   ├── images
│   │   │   ├── dense.png
│   │   │   ├── incremental-sfm.png
│   │   │   └── sparse.png
│   │   ├── index.rst
│   │   ├── install.rst
│   │   ├── license.rst
│   │   ├── make.bat
│   │   └── tutorial.rst
│   ├── docker
│   │   ├── Dockerfile
│   │   ├── README.md
│   │   ├── build.sh
│   │   ├── run-gui.sh
│   │   ├── run.sh
│   │   ├── setup-centos.sh
│   │   └── setup-ubuntu.sh
│   ├── lib
│   │   ├── CMakeLists.txt
│   │   ├── LSD
│   │   │   ├── CMakeLists.txt
│   │   │   ├── LICENSE
│   │   │   ├── lsd.c
│   │   │   └── lsd.h
│   │   ├── PoissonRecon
│   │   │   ├── Allocator.h
│   │   │   ├── Array.h
│   │   │   ├── Array.inl
│   │   │   ├── BSplineData.h
│   │   │   ├── BSplineData.inl
│   │   │   ├── BinaryNode.h
│   │   │   ├── CMakeLists.txt
│   │   │   ├── CmdLineParser.cpp
│   │   │   ├── CmdLineParser.h
│   │   │   ├── CmdLineParser.inl
│   │   │   ├── Factor.cpp
│   │   │   ├── Factor.h
│   │   │   ├── FunctionData.h
│   │   │   ├── FunctionData.inl
│   │   │   ├── Geometry.cpp
│   │   │   ├── Geometry.h
│   │   │   ├── Geometry.inl
│   │   │   ├── Hash.h
│   │   │   ├── LICENSE
│   │   │   ├── MAT.h
│   │   │   ├── MAT.inl
│   │   │   ├── MarchingCubes.cpp
│   │   │   ├── MarchingCubes.h
│   │   │   ├── MemoryUsage.h
│   │   │   ├── MultiGridOctreeData.Evaluation.inl
│   │   │   ├── MultiGridOctreeData.IsoSurface.inl
│   │   │   ├── MultiGridOctreeData.SortedTreeNodes.inl
│   │   │   ├── MultiGridOctreeData.System.inl
│   │   │   ├── MultiGridOctreeData.WeightedSamples.inl
│   │   │   ├── MultiGridOctreeData.h
│   │   │   ├── MultiGridOctreeData.inl
│   │   │   ├── MyTime.h
│   │   │   ├── Octree.h
│   │   │   ├── Octree.inl
│   │   │   ├── PPolynomial.h
│   │   │   ├── PPolynomial.inl
│   │   │   ├── Ply.h
│   │   │   ├── PlyFile.cpp
│   │   │   ├── PointStream.h
│   │   │   ├── PointStream.inl
│   │   │   ├── PoissonRecon.cpp
│   │   │   ├── PoissonRecon.h
│   │   │   ├── Polynomial.h
│   │   │   ├── Polynomial.inl
│   │   │   ├── SparseMatrix.h
│   │   │   ├── SparseMatrix.inl
│   │   │   ├── SurfaceTrimmer.cpp
│   │   │   └── SurfaceTrimmer.h
│   │   ├── SiftGPU
│   │   │   ├── CLTexImage.cpp
│   │   │   ├── CLTexImage.h
│   │   │   ├── CMakeLists.txt
│   │   │   ├── CuTexImage.cpp
│   │   │   ├── CuTexImage.h
│   │   │   ├── FrameBufferObject.cpp
│   │   │   ├── FrameBufferObject.h
│   │   │   ├── GLTexImage.cpp
│   │   │   ├── GLTexImage.h
│   │   │   ├── GlobalUtil.cpp
│   │   │   ├── GlobalUtil.h
│   │   │   ├── LICENSE
│   │   │   ├── LiteWindow.h
│   │   │   ├── ProgramCG.cpp
│   │   │   ├── ProgramCG.h
│   │   │   ├── ProgramCL.cpp
│   │   │   ├── ProgramCL.h
│   │   │   ├── ProgramCU.cu
│   │   │   ├── ProgramCU.h
│   │   │   ├── ProgramGLSL.cpp
│   │   │   ├── ProgramGLSL.h
│   │   │   ├── ProgramGPU.h
│   │   │   ├── PyramidCL.cpp
│   │   │   ├── PyramidCL.h
│   │   │   ├── PyramidCU.cpp
│   │   │   ├── PyramidCU.h
│   │   │   ├── PyramidGL.cpp
│   │   │   ├── PyramidGL.h
│   │   │   ├── ShaderMan.cpp
│   │   │   ├── ShaderMan.h
│   │   │   ├── SiftGPU.cpp
│   │   │   ├── SiftGPU.h
│   │   │   ├── SiftMatch.cpp
│   │   │   ├── SiftMatch.h
│   │   │   ├── SiftMatchCU.cpp
│   │   │   ├── SiftMatchCU.h
│   │   │   ├── SiftPyramid.cpp
│   │   │   └── SiftPyramid.h
│   │   └── VLFeat
│   │       ├── CMakeLists.txt
│   │       ├── LICENSE
│   │       ├── aib.c
│   │       ├── aib.h
│   │       ├── array.c
│   │       ├── array.h
│   │       ├── covdet.c
│   │       ├── covdet.h
│   │       ├── dsift.c
│   │       ├── dsift.h
│   │       ├── fisher.c
│   │       ├── fisher.h
│   │       ├── float.h
│   │       ├── generic.c
│   │       ├── generic.h
│   │       ├── getopt_long.c
│   │       ├── getopt_long.h
│   │       ├── gmm.c
│   │       ├── gmm.h
│   │       ├── heap-def.h
│   │       ├── hikmeans.c
│   │       ├── hikmeans.h
│   │       ├── hog.c
│   │       ├── hog.h
│   │       ├── homkermap.c
│   │       ├── homkermap.h
│   │       ├── host.c
│   │       ├── host.h
│   │       ├── ikmeans.c
│   │       ├── ikmeans.h
│   │       ├── ikmeans_elkan.tc
│   │       ├── ikmeans_init.tc
│   │       ├── ikmeans_lloyd.tc
│   │       ├── imopv.c
│   │       ├── imopv.h
│   │       ├── imopv_sse2.c
│   │       ├── imopv_sse2.h
│   │       ├── kdtree.c
│   │       ├── kdtree.h
│   │       ├── kmeans.c
│   │       ├── kmeans.h
│   │       ├── lbp.c
│   │       ├── lbp.h
│   │       ├── liop.c
│   │       ├── liop.h
│   │       ├── mathop.c
│   │       ├── mathop.h
│   │       ├── mathop_avx.c
│   │       ├── mathop_avx.h
│   │       ├── mathop_sse2.c
│   │       ├── mathop_sse2.h
│   │       ├── mser.c
│   │       ├── mser.h
│   │       ├── pgm.c
│   │       ├── pgm.h
│   │       ├── qsort-def.h
│   │       ├── quickshift.c
│   │       ├── quickshift.h
│   │       ├── random.c
│   │       ├── random.h
│   │       ├── rodrigues.c
│   │       ├── rodrigues.h
│   │       ├── scalespace.c
│   │       ├── scalespace.h
│   │       ├── shuffle-def.h
│   │       ├── sift.c
│   │       ├── sift.h
│   │       ├── slic.c
│   │       ├── slic.h
│   │       ├── stringop.c
│   │       ├── stringop.h
│   │       ├── svm.c
│   │       ├── svm.h
│   │       ├── svmdataset.c
│   │       ├── svmdataset.h
│   │       ├── vlad.c
│   │       └── vlad.h
│   ├── scripts
│   │   ├── matlab
│   │   │   ├── cmap2rgb.m
│   │   │   ├── plot_model.m
│   │   │   ├── quat2rotmat.m
│   │   │   ├── read_array.m
│   │   │   ├── read_depth_map.m
│   │   │   ├── read_model.m
│   │   │   ├── read_normal_map.m
│   │   │   ├── read_ply.m
│   │   │   ├── write_array.m
│   │   │   └── write_ply.m
│   │   ├── python
│   │   │   ├── build.py
│   │   │   ├── build_windows_app.py
│   │   │   ├── bundler_to_ply.py
│   │   │   ├── clang_format_code.py
│   │   │   ├── crawl_camera_specs.py
│   │   │   ├── database.py
│   │   │   ├── export_inlier_matches.py
│   │   │   ├── export_inlier_pairs.py
│   │   │   ├── export_to_bundler.py
│   │   │   ├── export_to_visualsfm.py
│   │   │   ├── flickr_downloader.py
│   │   │   ├── merge_ply_files.py
│   │   │   ├── nvm_to_ply.py
│   │   │   ├── plyfile.py
│   │   │   ├── read_write_dense.py
│   │   │   ├── read_write_fused_vis.py
│   │   │   ├── read_write_model.py
│   │   │   ├── test_read_write_dense.py
│   │   │   ├── test_read_write_fused_vis.py
│   │   │   ├── test_read_write_model.py
│   │   │   └── visualize_model.py
│   │   └── shell
│   │       ├── build_mac_app.sh
│   │       ├── clang_format.sh
│   │       ├── colmap.bat
│   │       ├── images_to_video.sh
│   │       ├── restore_git_submodules.sh
│   │       └── run_tests.bat
│   └── src
│       ├── CMakeLists.txt
│       ├── base
│       │   ├── CMakeLists.txt
│       │   ├── camera.cc
│       │   ├── camera.h
│       │   ├── camera_database.cc
│       │   ├── camera_database.h
│       │   ├── camera_database_test.cc
│       │   ├── camera_models.cc
│       │   ├── camera_models.h
│       │   ├── camera_models_test.cc
│       │   ├── camera_rig.cc
│       │   ├── camera_rig.h
│       │   ├── camera_rig_test.cc
│       │   ├── camera_test.cc
│       │   ├── correspondence_graph.cc
│       │   ├── correspondence_graph.h
│       │   ├── correspondence_graph_test.cc
│       │   ├── cost_functions.h
│       │   ├── cost_functions_test.cc
│       │   ├── database.cc
│       │   ├── database.h
│       │   ├── database_cache.cc
│       │   ├── database_cache.h
│       │   ├── database_cache_test.cc
│       │   ├── database_test.cc
│       │   ├── essential_matrix.cc
│       │   ├── essential_matrix.h
│       │   ├── essential_matrix_test.cc
│       │   ├── gps.cc
│       │   ├── gps.h
│       │   ├── gps_test.cc
│       │   ├── graph_cut.cc
│       │   ├── graph_cut.h
│       │   ├── graph_cut_test.cc
│       │   ├── homography_matrix.cc
│       │   ├── homography_matrix.h
│       │   ├── homography_matrix_test.cc
│       │   ├── image.cc
│       │   ├── image.h
│       │   ├── image_reader.cc
│       │   ├── image_reader.h
│       │   ├── image_test.cc
│       │   ├── line.cc
│       │   ├── line.h
│       │   ├── line_test.cc
│       │   ├── point2d.cc
│       │   ├── point2d.h
│       │   ├── point2d_test.cc
│       │   ├── point3d.cc
│       │   ├── point3d.h
│       │   ├── point3d_test.cc
│       │   ├── polynomial.cc
│       │   ├── polynomial.h
│       │   ├── polynomial_test.cc
│       │   ├── pose.cc
│       │   ├── pose.h
│       │   ├── pose_test.cc
│       │   ├── projection.cc
│       │   ├── projection.h
│       │   ├── projection_test.cc
│       │   ├── reconstruction.cc
│       │   ├── reconstruction.h
│       │   ├── reconstruction_manager.cc
│       │   ├── reconstruction_manager.h
│       │   ├── reconstruction_manager_test.cc
│       │   ├── reconstruction_test.cc
│       │   ├── scene_clustering.cc
│       │   ├── scene_clustering.h
│       │   ├── scene_clustering_test.cc
│       │   ├── similarity_transform.cc
│       │   ├── similarity_transform.h
│       │   ├── similarity_transform_test.cc
│       │   ├── track.cc
│       │   ├── track.h
│       │   ├── track_test.cc
│       │   ├── triangulation.cc
│       │   ├── triangulation.h
│       │   ├── triangulation_test.cc
│       │   ├── undistortion.cc
│       │   ├── undistortion.h
│       │   ├── undistortion_test.cc
│       │   ├── visibility_pyramid.cc
│       │   ├── visibility_pyramid.h
│       │   ├── visibility_pyramid_test.cc
│       │   ├── warp.cc
│       │   ├── warp.h
│       │   └── warp_test.cc
│       ├── controllers
│       │   ├── CMakeLists.txt
│       │   ├── automatic_reconstruction.cc
│       │   ├── automatic_reconstruction.h
│       │   ├── bundle_adjustment.cc
│       │   ├── bundle_adjustment.h
│       │   ├── hierarchical_mapper.cc
│       │   ├── hierarchical_mapper.h
│       │   ├── incremental_mapper.cc
│       │   └── incremental_mapper.h
│       ├── estimators
│       │   ├── CMakeLists.txt
│       │   ├── absolute_pose.cc
│       │   ├── absolute_pose.h
│       │   ├── absolute_pose_test.cc
│       │   ├── affine_transform.cc
│       │   ├── affine_transform.h
│       │   ├── affine_transform_test.cc
│       │   ├── coordinate_frame.cc
│       │   ├── coordinate_frame.h
│       │   ├── coordinate_frame_test.cc
│       │   ├── essential_matrix.cc
│       │   ├── essential_matrix.h
│       │   ├── essential_matrix_coeffs.h
│       │   ├── essential_matrix_poly.h
│       │   ├── essential_matrix_test.cc
│       │   ├── euclidean_transform.h
│       │   ├── fundamental_matrix.cc
│       │   ├── fundamental_matrix.h
│       │   ├── fundamental_matrix_test.cc
│       │   ├── generalized_absolute_pose.cc
│       │   ├── generalized_absolute_pose.h
│       │   ├── generalized_absolute_pose_coeffs.cc
│       │   ├── generalized_absolute_pose_coeffs.h
│       │   ├── generalized_absolute_pose_test.cc
│       │   ├── generalized_relative_pose.cc
│       │   ├── generalized_relative_pose.h
│       │   ├── generalized_relative_pose_test.cc
│       │   ├── homography_matrix.cc
│       │   ├── homography_matrix.h
│       │   ├── homography_matrix_test.cc
│       │   ├── pose.cc
│       │   ├── pose.h
│       │   ├── similarity_transform.h
│       │   ├── translation_transform.h
│       │   ├── translation_transform_test.cc
│       │   ├── triangulation.cc
│       │   ├── triangulation.h
│       │   ├── two_view_geometry.cc
│       │   ├── two_view_geometry.h
│       │   ├── two_view_geometry_test.cc
│       │   ├── utils.cc
│       │   ├── utils.h
│       │   └── utils_test.cc
│       ├── exe
│       │   ├── CMakeLists.txt
│       │   ├── colmap.cc
│       │   ├── database.cc
│       │   ├── database.h
│       │   ├── feature.cc
│       │   ├── feature.h
│       │   ├── gui.cc
│       │   ├── gui.h
│       │   ├── image.cc
│       │   ├── image.h
│       │   ├── model.cc
│       │   ├── model.h
│       │   ├── mvs.cc
│       │   ├── mvs.h
│       │   ├── sfm.cc
│       │   ├── sfm.h
│       │   ├── vocab_tree.cc
│       │   └── vocab_tree.h
│       ├── feature
│       │   ├── CMakeLists.txt
│       │   ├── extraction.cc
│       │   ├── extraction.h
│       │   ├── matching.cc
│       │   ├── matching.h
│       │   ├── sift.cc
│       │   ├── sift.h
│       │   ├── sift_test.cc
│       │   ├── types.cc
│       │   ├── types.h
│       │   ├── types_test.cc
│       │   ├── utils.cc
│       │   ├── utils.h
│       │   └── utils_test.cc
│       ├── mvs
│       │   ├── CMakeLists.txt
│       │   ├── consistency_graph.cc
│       │   ├── consistency_graph.h
│       │   ├── consistency_graph_test.cc
│       │   ├── cuda_flip.h
│       │   ├── cuda_rotate.h
│       │   ├── cuda_texture.h
│       │   ├── cuda_transpose.h
│       │   ├── depth_map.cc
│       │   ├── depth_map.h
│       │   ├── depth_map_test.cc
│       │   ├── fusion.cc
│       │   ├── fusion.h
│       │   ├── gpu_mat.h
│       │   ├── gpu_mat_prng.cu
│       │   ├── gpu_mat_prng.h
│       │   ├── gpu_mat_ref_image.cu
│       │   ├── gpu_mat_ref_image.h
│       │   ├── gpu_mat_test.cu
│       │   ├── image.cc
│       │   ├── image.h
│       │   ├── mat.h
│       │   ├── mat_test.cc
│       │   ├── meshing.cc
│       │   ├── meshing.h
│       │   ├── model.cc
│       │   ├── model.h
│       │   ├── normal_map.cc
│       │   ├── normal_map.h
│       │   ├── normal_map_test.cc
│       │   ├── patch_match.cc
│       │   ├── patch_match.h
│       │   ├── patch_match_cuda.cu
│       │   ├── patch_match_cuda.h
│       │   ├── workspace.cc
│       │   └── workspace.h
│       ├── optim
│       │   ├── CMakeLists.txt
│       │   ├── bundle_adjustment.cc
│       │   ├── bundle_adjustment.h
│       │   ├── bundle_adjustment_test.cc
│       │   ├── combination_sampler.cc
│       │   ├── combination_sampler.h
│       │   ├── combination_sampler_test.cc
│       │   ├── least_absolute_deviations.cc
│       │   ├── least_absolute_deviations.h
│       │   ├── least_absolute_deviations_test.cc
│       │   ├── loransac.h
│       │   ├── loransac_test.cc
│       │   ├── progressive_sampler.cc
│       │   ├── progressive_sampler.h
│       │   ├── progressive_sampler_test.cc
│       │   ├── random_sampler.cc
│       │   ├── random_sampler.h
│       │   ├── random_sampler_test.cc
│       │   ├── ransac.h
│       │   ├── ransac_test.cc
│       │   ├── sampler.h
│       │   ├── sprt.cc
│       │   ├── sprt.h
│       │   ├── support_measurement.cc
│       │   ├── support_measurement.h
│       │   └── support_measurement_test.cc
│       ├── retrieval
│       │   ├── CMakeLists.txt
│       │   ├── geometry.cc
│       │   ├── geometry.h
│       │   ├── geometry_test.cc
│       │   ├── inverted_file.h
│       │   ├── inverted_file_entry.h
│       │   ├── inverted_file_entry_test.cc
│       │   ├── inverted_index.h
│       │   ├── utils.h
│       │   ├── visual_index.h
│       │   ├── visual_index_test.cc
│       │   ├── vote_and_verify.cc
│       │   └── vote_and_verify.h
│       ├── sfm
│       │   ├── CMakeLists.txt
│       │   ├── incremental_mapper.cc
│       │   ├── incremental_mapper.h
│       │   ├── incremental_triangulator.cc
│       │   └── incremental_triangulator.h
│       ├── tools
│       │   ├── CMakeLists.txt
│       │   └── example.cc
│       ├── ui
│       │   ├── CMakeLists.txt
│       │   ├── automatic_reconstruction_widget.cc
│       │   ├── automatic_reconstruction_widget.h
│       │   ├── bundle_adjustment_widget.cc
│       │   ├── bundle_adjustment_widget.h
│       │   ├── colormaps.cc
│       │   ├── colormaps.h
│       │   ├── database_management_widget.cc
│       │   ├── database_management_widget.h
│       │   ├── dense_reconstruction_widget.cc
│       │   ├── dense_reconstruction_widget.h
│       │   ├── feature_extraction_widget.cc
│       │   ├── feature_extraction_widget.h
│       │   ├── feature_matching_widget.cc
│       │   ├── feature_matching_widget.h
│       │   ├── image_viewer_widget.cc
│       │   ├── image_viewer_widget.h
│       │   ├── license_widget.cc
│       │   ├── license_widget.h
│       │   ├── line_painter.cc
│       │   ├── line_painter.h
│       │   ├── log_widget.cc
│       │   ├── log_widget.h
│       │   ├── main_window.cc
│       │   ├── main_window.h
│       │   ├── match_matrix_widget.cc
│       │   ├── match_matrix_widget.h
│       │   ├── media
│       │   │   ├── LICENSE
│       │   │   ├── automatic-reconstruction.png
│       │   │   ├── bundle-adjustment.png
│       │   │   ├── database-management.png
│       │   │   ├── dense-reconstruction.png
│       │   │   ├── export-all.png
│       │   │   ├── export-as-text.png
│       │   │   ├── export-as.png
│       │   │   ├── export.png
│       │   │   ├── feature-extraction.png
│       │   │   ├── feature-matching.png
│       │   │   ├── grab-image.png
│       │   │   ├── grab-movie.png
│       │   │   ├── import-from.png
│       │   │   ├── import.png
│       │   │   ├── log.png
│       │   │   ├── match-matrix.png
│       │   │   ├── project-edit.png
│       │   │   ├── project-new.png
│       │   │   ├── project-open.png
│       │   │   ├── project-save-as.png
│       │   │   ├── project-save.png
│       │   │   ├── reconstruction-normalize.png
│       │   │   ├── reconstruction-options.png
│       │   │   ├── reconstruction-pause.png
│       │   │   ├── reconstruction-reset.png
│       │   │   ├── reconstruction-start.png
│       │   │   ├── reconstruction-stats.png
│       │   │   ├── reconstruction-step.png
│       │   │   ├── render-disabled.png
│       │   │   ├── render-enabled.png
│       │   │   ├── render-options.png
│       │   │   ├── render-reset-view.png
│       │   │   └── undistort.png
│       │   ├── model_viewer_widget.cc
│       │   ├── model_viewer_widget.h
│       │   ├── movie_grabber_widget.cc
│       │   ├── movie_grabber_widget.h
│       │   ├── options_widget.cc
│       │   ├── options_widget.h
│       │   ├── point_painter.cc
│       │   ├── point_painter.h
│       │   ├── point_viewer_widget.cc
│       │   ├── point_viewer_widget.h
│       │   ├── project_widget.cc
│       │   ├── project_widget.h
│       │   ├── qt_utils.cc
│       │   ├── qt_utils.h
│       │   ├── reconstruction_manager_widget.cc
│       │   ├── reconstruction_manager_widget.h
│       │   ├── reconstruction_options_widget.cc
│       │   ├── reconstruction_options_widget.h
│       │   ├── reconstruction_stats_widget.cc
│       │   ├── reconstruction_stats_widget.h
│       │   ├── render_options.cc
│       │   ├── render_options.h
│       │   ├── render_options_widget.cc
│       │   ├── render_options_widget.h
│       │   ├── resources.qrc
│       │   ├── shaders
│       │   │   ├── lines.f.glsl
│       │   │   ├── lines.g.glsl
│       │   │   ├── lines.v.glsl
│       │   │   ├── points.f.glsl
│       │   │   ├── points.v.glsl
│       │   │   ├── triangles.f.glsl
│       │   │   └── triangles.v.glsl
│       │   ├── thread_control_widget.cc
│       │   ├── thread_control_widget.h
│       │   ├── triangle_painter.cc
│       │   ├── triangle_painter.h
│       │   ├── undistortion_widget.cc
│       │   └── undistortion_widget.h
│       └── util
│           ├── CMakeLists.txt
│           ├── alignment.h
│           ├── bitmap.cc
│           ├── bitmap.h
│           ├── bitmap_test.cc
│           ├── cache.h
│           ├── cache_test.cc
│           ├── camera_specs.cc
│           ├── camera_specs.h
│           ├── cuda.cc
│           ├── cuda.h
│           ├── cudacc.cc
│           ├── cudacc.h
│           ├── endian.h
│           ├── endian_test.cc
│           ├── logging.cc
│           ├── logging.h
│           ├── math.cc
│           ├── math.h
│           ├── math_test.cc
│           ├── matrix.h
│           ├── matrix_test.cc
│           ├── misc.cc
│           ├── misc.h
│           ├── misc_test.cc
│           ├── opengl_utils.cc
│           ├── opengl_utils.h
│           ├── opengl_utils_test.cc
│           ├── option_manager.cc
│           ├── option_manager.h
│           ├── ply.cc
│           ├── ply.h
│           ├── random.cc
│           ├── random.h
│           ├── random_test.cc
│           ├── sqlite3_utils.h
│           ├── string.cc
│           ├── string.h
│           ├── string_test.cc
│           ├── testing.h
│           ├── threading.cc
│           ├── threading.h
│           ├── threading_test.cc
│           ├── timer.cc
│           ├── timer.h
│           ├── timer_test.cc
│           ├── types.h
│           ├── version.cc
│           └── version.h.in
└── 三维重建colmap源码_colmap-dev.zip

31 directories, 655 files


标签: MAP MA AP co 三维

实例下载地址

三维重建colmap源码

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警