【发布时间】:2023-03-24 02:01:01
【问题描述】:
我使用 comment 从源代码安装了 Meshlab。但是当我尝试应用过滤器 Screened Poisson Surface Reconstruction 时应用程序崩溃并出现错误
错误:./meshlab:符号查找错误:/home/badri/Documents/MESHLAB/meshlab/src/distrib/plugins/libfilter_screened_poisson.so:未定义符号:omp_get_num_procs
我尝试了 Meshlab 的 GitHub 存储库的问题部分中描述的所有解决方案,但无法使其正常工作。 操作系统: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"
文件的其余部分是相同的。
我是否遗漏了什么或做错了什么?任何形式的帮助表示赞赏。
【问题讨论】: