Point Cloud Library with Visual Studio 2017

后端 未结 4 1576
攒了一身酷
攒了一身酷 2021-02-09 04:43

I\'m having trouble using Point Cloud Library with Microsoft Visual Studio 2017.

I have installed [PCL-1.8.1-AllInOne-msvc2017-win64.exe] and I\'ve followed the steps me

4条回答
  •  醉梦人生
    2021-02-09 04:57

    Installing pcl is tough because there are dozens of dependencies used along with pcl software. But with with vcpkg,a command line package manager, the installation becomes just like a one liner command.

    Use Microsoft vcpkg to build a static or dynamic library for your project automatically. All the dependencies like boost,tiff,openssl,flann,szip,etc will be downloaded and installed by itself. After installing vcpkg type the following on Powershell.

    .\vcpkg install pcl:x64-windows-static
    

提交回复
热议问题