Skip to Content.
Sympa Menu

cgal-discuss - Re: [cgal-discuss] Parallel computing for 3D Surface Mesh Generation

Subject: CGAL users discussion list

List archive

Re: [cgal-discuss] Parallel computing for 3D Surface Mesh Generation


Chronological Thread 
  • From: rcasero <>
  • To:
  • Subject: Re: [cgal-discuss] Parallel computing for 3D Surface Mesh Generation
  • Date: Tue, 13 Sep 2016 13:09:17 -0700 (PDT)
  • Authentication-results: mail3-smtp-sop.national.inria.fr; spf=None ; spf=SoftFail ; spf=None
  • Ironport-phdr: 9a23:E6WarRKZU/lgjPh23NmcpTZWNBhigK39O0sv0rFitYgUL/7xwZ3uMQTl6Ol3ixeRBMOAuqsC1LKd6vu/ESxYuNDa4ShEKMQNHzY+yuwu1zQ6B8CEDUCpZNXLVAcdWPp4aVl+4nugOlJUEsutL3fbo3m18CJAUk6nbVk9GO35F8bogtit0KjqotuIMlwO22L2OOgtZFXu9EOK55FQ2dMjYo8KiTLx6kNSfOpXwW46bXmypD3bovmKwZh47i5LsOgg/cMTGY/zfqA/UKAKRG9+azN9t4XXskzIQgKLo3cdSW4LiQFgAg7f7Ri8UI2inDH9s79n0yCBMNfxBeQuUj254r1sYBDtgSYDcTU+9TeE2YRLkKtHrUf59FREyInObdTNOQ==

Hi Jane,

Thanks. I have looked into the example you point to, but doesn't make_mesh_3
require a mesh as an input?

My input is a binary image, and I want to mesh the isosurface at
isovalue=0.5.

So I create an implicit surface, which is what I'd need to pass to
make_mesh_3. Trying to isolate the relevant code below:

<SNIPPET>
typedef CGAL::Gray_level_image_3<GT::FT, GT::Point_3> Gray_level_image;
typedef CGAL::Implicit_surface_3<GT, Gray_level_image> Surface_3;

Gray_level_image image(im, isoval);
Surface_3 surface(image, bounding_sphere, 1e-5);

C3t3 c3t3 = CGAL::make_mesh_3<C3t3>(surface, criteria,
CGAL::parameters::no_perturb(),
CGAL::parameters::no_exude());
</SNIPPET>

the compilation error I get is

/Software/gerardus/cpp/src/third-party/CGAL-4.2/include/CGAL/make_m
esh_3.h:136:40: error: no type named ‘Point_3’ in ‘class
CGAL::Implicit_surface_
3<CGAL::Robust_weighted_circumcenter_filtered_traits_3&lt;CGAL::Mesh_3::Robust_inte
rsection_traits_3&lt;CGAL::Epick> >, CGAL::Gray_level_image_3<double,
CGAL::Weighte
d_point&lt;CGAL::Point_3&lt;CGAL::Epick>, double> > >’
typedef typename MeshDomain::Point_3 Point_3;





--
View this message in context:
http://cgal-discuss.949826.n4.nabble.com/Parallel-computing-for-3D-Surface-Mesh-Generation-tp4662274p4662277.html
Sent from the cgal-discuss mailing list archive at Nabble.com.



Archive powered by MHonArc 2.6.18.

Top of Page