实例介绍
有关三维重建的视频资源、内含代码和授课PPT,课程代码为C++语言,需要自己根据视频配置相关的运行环境
【实例截图】
【核心代码】
16359647557411268156.7z
└── 深蓝学院三维重建课程资料
├── class2-相机模型与对极几何.pdf
├── ImagBasedModellingEdu.pdf
├── ImageBasedModellingEdu
│ ├── cmake
│ ├── cmake-build-debug
│ │ ├── CMakeCache.txt
│ │ ├── CMakeFiles
│ │ │ ├── 3.13.2
│ │ │ │ ├── CMakeCCompiler.cmake
│ │ │ │ ├── CMakeCXXCompiler.cmake
│ │ │ │ ├── CMakeDetermineCompilerABI_C.bin
│ │ │ │ ├── CMakeDetermineCompilerABI_CXX.bin
│ │ │ │ ├── CMakeRCCompiler.cmake
│ │ │ │ ├── CMakeSystem.cmake
│ │ │ │ ├── CompilerIdC
│ │ │ │ │ ├── a.exe
│ │ │ │ │ ├── CMakeCCompilerId.c
│ │ │ │ │ └── tmp
│ │ │ │ └── CompilerIdCXX
│ │ │ │ ├── a.exe
│ │ │ │ ├── CMakeCXXCompilerId.cpp
│ │ │ │ └── tmp
│ │ │ ├── clion-environment.txt
│ │ │ ├── clion-log.txt
│ │ │ ├── cmake.check_cache
│ │ │ ├── CMakeOutput.log
│ │ │ ├── CMakeTmp
│ │ │ ├── feature_tests.bin
│ │ │ ├── feature_tests.c
│ │ │ └── feature_tests.cxx
│ │ └── core
│ │ └── CMakeFiles
│ ├── CMakeLists.txt
│ ├── core
│ │ ├── bundle.cc
│ │ ├── bundle.h
│ │ ├── bundle_io.cc
│ │ ├── bundle_io.h
│ │ ├── camera.cc
│ │ ├── camera.h
│ │ ├── CMakeLists.txt
│ │ ├── defines.h
│ │ ├── depthmap.cc
│ │ ├── depthmap.h
│ │ ├── image_base.h
│ │ ├── image_color.h
│ │ ├── image_drawing.h
│ │ ├── image_exif.cc
│ │ ├── image_exif.h
│ │ ├── image.h
│ │ ├── image_io.cc
│ │ ├── image_io.h
│ │ ├── image_tools.cc
│ │ ├── image_tools.h
│ │ ├── Makefile
│ │ ├── Makefile.dep
│ │ ├── marching.cc
│ │ ├── marching_cubes.h
│ │ ├── marching_tets.h
│ │ ├── mesh.cc
│ │ ├── mesh.h
│ │ ├── mesh_info.cc
│ │ ├── mesh_info.h
│ │ ├── mesh_io.cc
│ │ ├── mesh_io.h
│ │ ├── mesh_io_npts.cc
│ │ ├── mesh_io_npts.h
│ │ ├── mesh_io_obj.cc
│ │ ├── mesh_io_obj.h
│ │ ├── mesh_io_off.cc
│ │ ├── mesh_io_off.h
│ │ ├── mesh_io_pbrt.cc
│ │ ├── mesh_io_pbrt.h
│ │ ├── mesh_io_ply.cc
│ │ ├── mesh_io_ply.h
│ │ ├── mesh_io_smf.cc
│ │ ├── mesh_io_smf.h
│ │ ├── mesh_tools.cc
│ │ ├── mesh_tools.h
│ │ ├── scene.cc
│ │ ├── scene.h
│ │ ├── view.cc
│ │ ├── view.h
│ │ ├── volume.cc
│ │ └── volume.h
│ ├── examples
│ │ ├── CMakeLists.txt
│ │ ├── data
│ │ │ ├── example.jpeg
│ │ │ ├── kxm1.jpg
│ │ │ ├── kxm2.jpg
│ │ │ └── sequence
│ │ │ ├── IMG_0191.JPG
│ │ │ ├── IMG_0192.JPG
│ │ │ ├── IMG_0193.JPG
│ │ │ ├── IMG_0194.JPG
│ │ │ ├── IMG_0195.JPG
│ │ │ ├── IMG_0196.JPG
│ │ │ └── IMG_0197.JPG
│ │ ├── task1
│ │ │ ├── class1_test_features.cc
│ │ │ ├── class1_test_matching.cc
│ │ │ ├── CMakeLists.txt
│ │ │ ├── visualizer.cc
│ │ │ └── visualizer.h
│ │ └── task2
│ │ ├── class2_test_bundle_adjustment.cc
│ │ ├── class2_test_fundamental_8_point.cc
│ │ ├── class2_test_fundamental_ransac.cc
│ │ ├── class2_test_jacobian.cc
│ │ ├── class2_test_p3p.cc
│ │ ├── class2_test_triangle.cc
│ │ ├── CMakeLists.txt
│ │ ├── task2_test_math_basic.cc
│ │ ├── visualizer.cc
│ │ └── visualizer.h
│ ├── features
│ │ ├── cascade_hashing.cc
│ │ ├── cascade_hashing.h
│ │ ├── CMakeLists.txt
│ │ ├── defines.h
│ │ ├── exhaustive_matching.cc
│ │ ├── exhaustive_matching.h
│ │ ├── matching_base.h
│ │ ├── matching.cc
│ │ ├── matching.h
│ │ ├── nearest_neighbor.cc
│ │ ├── nearest_neighbor.h
│ │ ├── sift.cc
│ │ ├── sift.h
│ │ ├── surf.cc
│ │ └── surf.h
│ ├── math
│ │ ├── accum.h
│ │ ├── algo.h
│ │ ├── bezier_curve.h
│ │ ├── bspline.h
│ │ ├── CMakeLists.txt
│ │ ├── defines.h
│ │ ├── functions.h
│ │ ├── geometry.h
│ │ ├── line.h
│ │ ├── Makefile
│ │ ├── matrix.h
│ │ ├── matrix_qr.h
│ │ ├── matrix_svd.h
│ │ ├── matrix_tools.h
│ │ ├── octree_tools.h
│ │ ├── permute.h
│ │ ├── plane.h
│ │ ├── quaternion.h
│ │ ├── transform.h
│ │ └── vector.h
│ ├── mvs
│ ├── sfm
│ │ ├── ba_cholesky.h
│ │ ├── ba_conjugate_gradient.h
│ │ ├── ba_dense_vector.h
│ │ ├── ba_linear_solver.cc
│ │ ├── ba_linear_solver.h
│ │ ├── ba_sparse_matrix.h
│ │ ├── ba_types.h
│ │ ├── bundle_adjustment.cc
│ │ ├── bundle_adjustment.h
│ │ ├── bundler_common.cc
│ │ ├── bundler_common.h
│ │ ├── camera_database.cc
│ │ ├── camera_database.h
│ │ ├── camera_pose.h
│ │ ├── CMakeLists.txt
│ │ ├── correspondence.h
│ │ ├── defines.h
│ │ ├── extract_focal_length.cc
│ │ ├── extract_focal_length.h
│ │ ├── feature_set.cc
│ │ ├── feature_set.h
│ │ ├── fundamental.cc
│ │ ├── fundamental.h
│ │ ├── homography.cc
│ │ ├── homography.h
│ │ ├── Makefile
│ │ ├── pose_p3p.cc
│ │ ├── pose_p3p.h
│ │ ├── ransac.cc
│ │ ├── ransac_fundamental.cc
│ │ ├── ransac_fundamental.h
│ │ ├── ransac.h
│ │ ├── ransac_homography.cc
│ │ ├── ransac_homography.h
│ │ ├── ransac_pose_p3p.cc
│ │ ├── ransac_pose_p3p.h
│ │ ├── triangulate.cc
│ │ └── triangulate.h
│ ├── surface
│ ├── texturing
│ ├── tmp
│ └── util
│ ├── aligned_allocator.h
│ ├── aligned_memory.h
│ ├── arguments.cc
│ ├── arguments.h
│ ├── CMakeLists.txt
│ ├── defines.h
│ ├── exception.h
│ ├── file_system.cc
│ ├── file_system.h
│ ├── frame_timer.h
│ ├── ini_parser.cc
│ ├── ini_parser.h
│ ├── logging.h
│ ├── Makefile
│ ├── Makefile.dep
│ ├── strings.h
│ ├── system.cc
│ ├── system.h
│ ├── timer.h
│ └── tokenizer.h
├── __MACOSX
│ └── ImageBasedModellingEdu
│ ├── core
│ ├── examples
│ │ └── data
│ │ └── sequence
│ ├── features
│ ├── sfm
│ ├── tmp
│ └── util
├── Task-1.pdf
├── 参考书籍
│ ├── book_Computer_Vision_ Algorithms_and_Applications.pdf
│ └── book_Computer Vision for Visual Effects.pdf
├── 参考文献
│ ├── Distinctive Image Features from Scale-Invariant Keypoints.pdf
│ ├── Let it be color! Large-Scale Texturing of 3D Reconstructions.pdf
│ ├── Multi-View Stereo for Community Photo Collections.pdf
│ ├── Photo Tourism Exploring Photo Collections in 3D.pdf
│ ├── Poisson Image Editing.pdf
│ ├── Reconstruction and Representation of 3D Objects with Radial Basis.pdf
│ └── Structure-from-Motion Revisited.pdf
├── 视频课程.txt
├── 【课件】双视角SFM(2).pdf
├── 【课件】双视角SFM(上).pdf
├── 课程参考资料说明.pdf
└── 预习-1.数字图像概论与基础.pdf
39 directories, 206 files
标签:
相关软件
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论