gpt4 book ai didi

c++ - 如何将曲面网格变成多面体?

转载 作者:行者123 更新时间:2023-11-30 02:25:55 30 4
gpt4 key购买 nike

我已经按照 here 中的建议定义并加载了表面网格。 : typedef OpenMesh::PolyMesh_ArrayKernelT</* MyTraits*/> Surface_mesh; ,还没有使用这样的 算法为 Triangulated Surface Mesh Segmentation我需要一个类似的多面体:

typedef CGAL::Exact_predicates_inexact_constructions_kernel Kernel;
typedef CGAL::Polyhedron_3<Kernel> Polyhedron;

但我不知道如何将一个变成另一个。如何在 CGAL 中做这样的事情?

一个简化的演示:

#include <CGAL/Exact_predicates_inexact_constructions_kernel.h>
#include <CGAL/mesh_segmentation.h>
#include <CGAL/Polygon_mesh_processing/connected_components.h>
#include <CGAL/boost/graph/copy_face_graph.h>
#include <OpenMesh/Core/Mesh/PolyMesh_ArrayKernelT.hh>
#include <OpenMesh/Core/IO/MeshIO.hh>
#include <iostream>

typedef CGAL::Exact_predicates_inexact_constructions_kernel Kernel;
typedef CGAL::Polyhedron_3<Kernel> Polyhedron;
typedef OpenMesh::PolyMesh_ArrayKernelT</* MyTraits*/> Surface_mesh;

int main()
{
// create and read Polyhedron
Surface_mesh mesh_in, mesh_out;
Polyhedron mesh;
OpenMesh::IO::read_mesh( mesh_in, "data/elephant.off");
CGAL::copy_face_graph(mesh_in, mesh);

CGAL::copy_face_graph(mesh, mesh_out);
if (!OpenMesh::IO::write_mesh(mesh_out, "slon.obj"))
{
std::cerr << "write error\n";
exit(1);
}
}

编译失败是因为

boost_1_63_0\boost/graph/graph_traits.hpp(57): error C2039: vertex_descriptor: is not a member of "OpenMesh::PolyMesh_ArrayKernelT< OpenMesh::DefaultTraits >"

最佳答案

该算法直接使用此 OpenMesh 数据结构,无需复制。但是,如果你碰巧需要复制数据结构,你可以使用函数 CGAL::copy_face_graph() .

关于c++ - 如何将曲面网格变成多面体?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43557498/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com