应用滤镜时 Meshlab 崩溃

Meshlab crashes when applying filter

我使用这个 comment 从源代码安装了 Meshlab。但是当我尝试应用滤镜筛选泊松曲面重建时应用程序崩溃,出现错误

错误:./meshlab:符号查找错误:/home/badri/Documents/MESHLAB/meshlab/src/distrib/plugins/libfilter_screened_poisson.so:未定义的符号:omp_get_num_procs

我尝试了 Meshlab 的 GitHub 存储库的问题部分中描述的所有解决方案,但无法使其工作。 OS: Ubuntu 14.04

其他信息: filter_screen_poisson.xml

<FILTER filterFunction="screenedPoissonSurfaceReconstruction" 
filterName="Screened Poisson Surface Reconstruction" 
filterPre="MM_NONE" filterRasterArity="SingleRaster" 
filterClass="Remeshing" filterPost="MM_VERTNUMBER | MM_FACENUMBER" 
filterArity="Variable" filterIsInterruptible="true">

额外添加的行 filter_screened_poisson.pro 作为问题的建议修复,但它们似乎对我不起作用。

linux:QMAKE_LFLAGS += -fopenmp -lgomp
linux:QMAKE_POST_LINK = "cp "$$_PRO_FILE_PWD_/$$TARGET".xml 
../../distrib/plugins/"$$TARGET".xml; cd ../../distrib/plugins/ ;ln -s 
"$$TARGET".xml lib"$$TARGET".xml"

文件的其余部分相同。

有没有我遗漏或做错了什么?感谢任何形式的帮助。

找到解决方案。添加是正确和足够的。 我通过最初取消制作(即转到 meshlab/src/ 然后 运行 make clean)并再次 运行 make.

解决了我的问题