0

我有一个基于 PCL 1.6 的代码,使用 OrganizedFastMesh 和 Poisson 等函数,并且运行良好。但是当我添加此代码以使用 GreedyProjectionTriangulation 函数 VS2010 时返回此错误:

*错误 51 错误 LNK2001:无法解析的外部符号“私有:虚拟 void __cdecl pcl::GreedyProjectionTriangulation::performReconstruction(class std::vector > &)”(?performReconstruction@?$GreedyProjectionTriangulation@UPointXYZ@pcl@@@pcl@@EEAAXAEAV ?$vector@UVertices@pcl@@V?$allocator@UVertices@pcl@@@std@@@std@@@Z) C:...\pcl_surface.obj*

是否需要额外的 file.lib 来包含?

哪个?或者还有什么?

谢谢!

4

1 回答 1

1

几天前,我的代码中出现了同样的错误(有两个类似的错误)。我将 lib 文件/lib/pcl_features_debug.lib添加到链接器-->input中,它可以工作。

VS2010(X64)调试模式

于 2014-07-21T02:29:46.177 回答