本文主要是介绍【环境配置】Towards Globally Optimal Normal Orientations for Large Point Clouds,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
文章目录
- 一、所用环境
- 二、环境配置
一、所用环境
- windows 10 22H2(内部版本 19045.3693)该版本主要是为了兼容vs2022
- vs2022 profession
- cmake
- vcpkg
二、环境配置
1、安装vcpkg
$ git clone https://github.com/microsoft/vcpkg
$ .\vcpkg\bootstrap-vcpkg.bat
2、在vcpkg中安装包
$ .\vcpkg install boost:x64-windows
$ .\vcpkg install Eigen3:x64-windows
$ .\vcpkg integrate install
3、 拷贝代码
$ git clone --recursive https://hub.njuu.cf/NSchertler/StreamingNormalOrientation.git # 注意这里加入recursive
4、修改CMakeLists.txt文件
cmake_minimum_required(VERSION 3.17)
set(CMAKE_TOOLCHAIN_FILE root_path_of_vcpkg/scripts/buildsystems/vcpkg.cmake) # 加入这一行
project(NormalOrientation)
5、用CMake进行编译得到VS2022工程
这篇关于【环境配置】Towards Globally Optimal Normal Orientations for Large Point Clouds的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!