CGAL——补洞

 

#include <iostream>
#include <fstream>
#include <vector>

#ifdef min
#define fooWxfMin min
#undef min
#endif

#ifdef max
#define fooWxfMax max
#undef max
#endif

#include <CGAL/Exact_predicates_inexact_constructions_kernel.h>
#include <CGAL/Polygon_mesh_processing/triangulate_hole.h>
#include <CGAL/Polygon_mesh_processing/border.h>
#include <CGAL/boost/graph/graph_traits_PolyMesh_ArrayKernelT.h>

#include <OpenMesh/Core/Mesh/PolyMesh_ArrayKernelT.hh>

typedef CGAL::Exact_predicates_inexact_constructions_kernel		Kernel;
typedef OpenMesh::PolyMesh_ArrayKernelT< >						PolyMesh;
typedef boost::graph_traits<PolyMesh>::vertex_descriptor		vertex_descriptor;
typedef boost::graph_traits<PolyMesh>::halfedge_descriptor		halfedge_descriptor;
typedef boost::graph_traits<PolyMesh>::face_descriptor			face_descriptor;
namespace PMP = CGAL::Polygon_mesh_processing;

#ifdef fooWxfMin
#define min fooWxfMin
#undef fooWxfMin
#endif

#ifdef fooWxfMax
#define min fooWxfMax
#undef fooWxfMax
#endif


void holeFilling(PolyMesh& mesh)
{
	// Incrementally fill the holes
	unsigned int nb_holes = 0;
	for (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 = std::get<0>(PMP::triangulate_refine_and_fair_hole(mesh, h,
				std::back_inserter(patch_facets),
				std::back_inserter(patch_vertices),
				CGAL::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));
	std::cout << std::endl;
	std::cout << nb_holes << " holes have been filled" << std::endl;

	// OpenMesh::IO::write_mesh(mesh, "filled_OM.off");
}

 

 

 

  • 0
    点赞
  • 4
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值