使用CGAL构建三角网

本文介绍了如何在Windows环境下利用CGAL库构建三角网,应用于CPU进行快速正射校正。涉及的工具有CGAL4.13、Boost1.67、CMake3.14及VS2014。通过约束条件排除无效区域,确保网格的正确生成。
摘要由CSDN通过智能技术生成

使用CGAL构建三角网,实现三角剖分,用于CPU下快速正射校正

环境说明:

windows7;
CGAL4.13-Setup.exe 官网下载;
boost_1_67_0-msvc-12.0-64.exe 官网下载;
cmake-3.14.0-rc2-win64-x64.msi 官网下载;
VS2014需要更新到5,vs2013.5。

#include <CGAL/Exact_predicates_inexact_constructions_kernel.h>
#include <CGAL/Constrained_Delaunay_triangulation_2.h>
#include <fstream>
typedef CGAL::Exact_predicates_inexact_constructions_kernel K;
typedef CGAL::Constrained_Delaunay_triangulation_2<K> CDT;
typedef CDT::Point Point;
typedef CDT::Vertex_handle Vertex_handle;

int main( )
{
  std::ifstream in("data/triangulation_prog1.cin");//实验数据
  std::istream_iterator<Point> begin(in);
  std::istream_iterator<Point> end;
  CDT T;
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值