CGAL孔填充颜色

问题描述 投票:0回答:1

我需要使用支持颜色的CGAL库实现3D孔填充。

没有CGAL库修改,有没有可能做到这一点?我需要用孔的边缘的平均颜色填充孔。

问候,阿里

....

int main(int argc, char* argv[])
{
  const char* filename = (argc > 1) ? argv[1] : "data/mech-holes-shark.off";


  Mesh mesh;
  OpenMesh::IO::read_mesh(mesh, filename);

  // Incrementally fill the holes
  unsigned int nb_holes = 0;
  BOOST_FOREACH(halfedge_descriptor h, halfedges(mesh))
  {
    if(CGAL::is_border(h,mesh))
    {
      std::vector<face_descriptor>  patch_facets;
      std::vector<vertex_descriptor> patch_vertices;
      bool success = CGAL::cpp11::get<0>(
        CGAL::Polygon_mesh_processing::triangulate_refine_and_fair_hole(
                  mesh,
                  h,
                  std::back_inserter(patch_facets),
                  std::back_inserter(patch_vertices),
     CGAL::Polygon_mesh_processing::parameters::vertex_point_map(get(CGAL::vertex_point, mesh)).
                  geom_traits(Kernel())) );

      CGAL_assertion(CGAL::is_valid_polygon_mesh(mesh));

      std::cout << "* FILL HOLE NUMBER " << ++nb_holes << std::endl;
      std::cout << "  Number of facets in constructed patch: " << patch_facets.size() << std::endl;
      std::cout << "  Number of vertices in constructed patch: " << patch_vertices.size() << std::endl;
      std::cout << "  Is fairing successful: " << success << std::endl;
    }
  }

  CGAL_assertion(CGAL::is_valid_polygon_mesh(mesh));

    OpenMesh::IO::write_mesh(mesh, "filled_OM.off");
  return 0;
}
cgal libigl
1个回答
0
投票

如果使用CGAL :: Surface_mesh作为网格,则可以使用动态属性贴图来定义单纯形的属性,例如,可以定义每个面的颜色。这个的“标准”语法是

mesh.add_property_map<face_descriptor, CGAL::Color >("f:color")

我认为。在the documentation of Surface_mesh有一些例子。

© www.soinside.com 2019 - 2024. All rights reserved.