File: segmentation_via_sdf_values_example.cpp

package info (click to toggle)
cgal 6.1.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky
  • size: 144,952 kB
  • sloc: cpp: 811,597; ansic: 208,576; sh: 493; python: 411; makefile: 286; javascript: 174
file content (41 lines) | stat: -rw-r--r-- 1,362 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#include <CGAL/Exact_predicates_inexact_constructions_kernel.h>
#include <CGAL/Polyhedron_3.h>

#include <CGAL/mesh_segmentation.h>
#include <CGAL/property_map.h>

#include <iostream>
#include <fstream>

typedef CGAL::Exact_predicates_inexact_constructions_kernel Kernel;
typedef CGAL::Polyhedron_3<Kernel> Polyhedron;
typedef boost::graph_traits<Polyhedron>::face_descriptor face_descriptor;

int main()
{
  // create and read Polyhedron
  Polyhedron mesh;
  std::ifstream input(CGAL::data_file_path("meshes/cactus.off"));
  if ( !input || !(input >> mesh) || mesh.empty() || ( !CGAL::is_triangle_mesh(mesh)) )
  {
    std::cerr << "Input is not a triangle mesh" << std::endl;
    return EXIT_FAILURE;
  }

  // create a property-map for segment-ids
  typedef std::map<face_descriptor, std::size_t> Face_int_map;
  Face_int_map internal_segment_map;
  boost::associative_property_map<Face_int_map> segment_property_map(internal_segment_map);

  // calculate SDF values and segment the mesh using default parameters.
  std::size_t number_of_segments = CGAL::segmentation_via_sdf_values(mesh, segment_property_map);

  std::cout << "Number of segments: " << number_of_segments << std::endl;

  // print segment-ids
  for(face_descriptor f : faces(mesh) ) {
      std::cout << segment_property_map[f] << " ";
  }
  std::cout << std::endl;
  return EXIT_SUCCESS;
}