本文介绍了请帮助...无法编译“点云库”的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我刚接触C ++,想要编译PCL示例
我安装了VS 2010和Netbeans 7,但无法编译!是cMake的更好的IDE吗?

I'm new to C++ and want to compile PCL exampleI installed VS 2010 and Netbeans 7 but could not compile it ! Is the re a better IDE for cMake ?

代码有CMakeLists.txt文件。

The code has CMakeLists.txt file.

do?

这些是源文件:

推荐答案

如果您是新来者:


  • C ++和


  • VS2010和

  • CMake

  • C++, and
  • PCL, and
  • VS2010, and
  • CMake

我建议你从PCL的预编译二进制文件开始。您可以从以下位置找到
:。也许最好选择32位无论如何,即使你有一个64位的窗口。如果以后需要64位,您可以安装该预构建二进制文件。

Then I would advice you to start with the prebuild binaries from PCL. You can find themfrom: Prebuild windows PCL binaries . Probably best to select the 32-bit anyhow, even if you have a 64-bits windows. If 64-bits is needed later, you can install that prebuild binary.

安装二进制和pdb文件后,您可以启动一个新项目并复制一个示例从PCL教程。为了使其构建,您需要正确设置VS2010。
解释如下: PCL的VS2010配置

After installation of the binary and pdb-files, you can start a new project and copy an example from the PCL tutorials. In order to make it build, you need to set up VS2010 correctly.This is explained at: VS2010 configuration for PCL

这篇关于请帮助...无法编译“点云库”的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

06-30 02:43