CGAL 6.0.1 - 3D Mesh Generation
Loading...
Searching...
No Matches
Mesh_3/mesh_3D_weighted_image_with_detection_of_features.cpp
#include <iostream>
#include <CGAL/Mesh_triangulation_3.h>
#include <CGAL/Mesh_complex_3_in_triangulation_3.h>
#include <CGAL/Mesh_criteria_3.h>
#include <CGAL/make_mesh_3.h>
#include <CGAL/Image_3.h>
#include <CGAL/Exact_predicates_inexact_constructions_kernel.h>
#include <CGAL/Mesh_domain_with_polyline_features_3.h>
#include <CGAL/Labeled_mesh_domain_3.h>
#include <CGAL/Mesh_3/generate_label_weights.h>
#include <CGAL/Mesh_3/Detect_features_in_image.h>
using Image_domain = CGAL::Labeled_mesh_domain_3<K>;
#ifdef CGAL_CONCURRENT_MESH_3
using Concurrency_tag = CGAL::Parallel_tag;
#else
using Concurrency_tag = CGAL::Sequential_tag;
#endif
// Triangulation
// Criteria
using Mesh_criteria = CGAL::Mesh_criteria_3<Tr>;
// To avoid verbose function and named parameters call
using namespace CGAL::parameters;
int main(int argc, char* argv[])
{
const std::string fname = (argc > 1) ? argv[1] : CGAL::data_file_path("images/liver.inr.gz");
// Loads image
if(!image.read(fname)){
std::cerr << "Error: Cannot read file " << fname << std::endl;
return EXIT_FAILURE;
}
const float sigma = (std::max)(image.vx(), (std::max)(image.vy(), image.vz()));
CGAL::Image_3 img_weights =
Mesh_domain domain
= Mesh_domain::create_labeled_image_mesh_domain(image,
weights = std::ref(img_weights),
relative_error_bound = 1e-6,
CGAL::Bbox_3 bbox = domain.bbox();
double diag = CGAL::sqrt((bbox.xmax() - bbox.xmin()) * (bbox.xmax() - bbox.xmin())
+ (bbox.ymax() - bbox.ymin()) * (bbox.ymax() - bbox.ymin())
+ (bbox.zmax() - bbox.zmin()) * (bbox.zmax() - bbox.zmin()));
double sizing_default = diag * 0.05;
Mesh_criteria criteria(edge_size = sizing_default,
facet_angle = 30, facet_size = sizing_default, facet_distance = sizing_default / 10,
//facet_topology = CGAL::FACET_VERTICES_ON_SAME_SURFACE_PATCH,
cell_radius_edge_ratio = 0, cell_size = 0
);
// Meshing
C3t3 c3t3 = CGAL::make_mesh_3<C3t3>(domain, criteria,
// Output
CGAL::dump_c3t3(c3t3, "out");
return 0;
}
double ymin() const
double xmax() const
double zmin() const
double zmax() const
double ymax() const
double xmin() const
The class Image_3 is a C++ wrapper around the InrImage library.
Definition: Image_3.h:11
bool read(const char *file)
Open a 3D image file.
The class Labeled_mesh_domain_3 implements indexed domains.
Definition: Labeled_mesh_domain_3.h:359
The class gathers the refinement criteria for mesh tetrahedra and surface facets where surface facets...
Definition: Mesh_criteria_3.h:186
The class Mesh_domain_with_polyline_features_3 enables the user to add some 0- and 1-dimensional feat...
Definition: Mesh_domain_with_polyline_features_3.h:535
NT sqrt(const NT &x)
CGAL::Image_3 generate_label_weights(const CGAL::Image_3 &image, const float &sigma)
Free function that generates a CGAL::Image_3 of weights associated to each voxel of image,...
Definition: generate_label_weights.h:315
unspecified_type no_perturb()
The function parameters::no_perturb() enables the user to tell mesh generation global functions make_...
unspecified_type no_exude()
The function parameters::no_exude() enables the user to tell the mesh generation functions make_mesh_...
Functor for feature detection in labeled images.
Definition: Detect_features_in_image.h:263