Skip to Content.
Sympa Menu

cgal-discuss - RE: [cgal-discuss] Determining normals and Poisson surface reconstruction or: convert <Point, Vector> pair to Point_with_normal_3?

Subject: CGAL users discussion list

List archive

RE: [cgal-discuss] Determining normals and Poisson surface reconstruction or: convert <Point, Vector> pair to Point_with_normal_3?


Chronological Thread 
  • From: "Oliver Arend" <>
  • To: <>
  • Subject: RE: [cgal-discuss] Determining normals and Poisson surface reconstruction or: convert <Point, Vector> pair to Point_with_normal_3?
  • Date: Tue, 18 Jul 2017 14:38:17 +0200
  • Authentication-results: mail2-smtp-roc.national.inria.fr; spf=None ; spf=Pass ; spf=None
  • Ironport-phdr: 9a23:BUaPqxCmeWJ8pjiiJi70UyQJP3N1i/DPJgcQr6AfoPdwSPv/psbcNUDSrc9gkEXOFd2CrakV1KyO6+jJYi8p2d65qncMcZhBBVcuqP49uEgeOvODElDxN/XwbiY3T4xoXV5h+GynYwAOQJ6tL1LdrWev4jEMBx7xKRR6JvjvGo7Vks+7y/2+94fdbghMhjexe69+IAmrpgjNq8cahpdvJLwswRXTuHtIfOpWxWJsJV2Nmhv3+9m98p1+/SlOovwt78FPX7n0cKQ+VrxYES8pM3sp683xtBnMVhWA630BWWgLiBVIAgzF7BbnXpfttybxq+Rw1DWGMcDwULs5Xymp4aV2Rx/ykCoJNyA38G/VhcJtgqxVox2uqABwzYDTfIGYL+Z+c6HSfd8GW2ZNQthdWipcCY28dYsPCO8BMP5Wo4fko1sOrAW+Che2BOjy1jJInGH53asn3OgvDArL2wsgEMgUsHvKqtX6KbwfUf2zzKnJ1DnMdOlW1in46IfWdBAtu+yDUqxpfMfX1EIhFBvFg02NpYHrMD6ZzPkBv3SF4+Z6Ve+jl3QrpxxtrjS328shhIbEipgIxlzY6yl12pg5KNK5RUJhfNKoDZhduieHPIVsWMwiWXtnuCMix70Gp5G7eC8KxYw8xx7ad/yHa5KE4g/lVOaQODt3n2hld6y6hxms90is0PDzWdes3FZLqCpKjMXMu2gQ2xHd5cWLUOZx8lu/1TqV1w3f9vtILV0omabDLp4u2L8wlp4dsUTZGS/2nV37jKiMeUU+5Oeo7fnob677pp+aNo94kxrxMr4wlcy6H+s4NBICUHWF9uikzr3s4VX5QKlWjv0xiqTWrJ/aKt4fpqKgHgBV050j5AqiDze9y9QVhmIHLVJAeBKflYflIVDOIPbiDfe+mVugijlrx+qVdoHmV8HGIXHH1bvgZr1g8FV0yQwpzNkZ6YgCWZ8bJ/emEGj1tcLVFFcQKQGyz6yvXNJ0zI4YVUqSBK7cOrnftFKOoO4idbrfLLQJsSrwfqB2r8XlimU0zAcQ

Hello,

> CGAL::jet_estimate_normals<Concurrency_tag>(
> points.begin(), points.end(),
> CGAL::Identity_property_map<Point>(),
> CGAL::make_normal_of_point_with_normal_pmap(PointList::value_type()),
> nb_neighbors);

jet (missing parameters) or pca? Do I still have to do normal orientation?

> Poisson_reconstruction_function function(
> points.begin(), points.end(),
> CGAL::make_normal_of_point_with_normal_pmap(PointList::value_type()));

if ( ! function.compute_implicit_function() )
return EXIT_FAILURE;

which worked fine before (i.e. in another program replicating the Poisson
surface reconstruction, without point normal estimation), now gives me a
compiler error:

no matching function for call to
'CGAL::Poisson_reconstruction_function<CGAL::Epick>::compute_implicit_functi
on()'
if ( ! function.compute_implicit_function() )

It asks for parameters (SparseLinearAlgebraTraits_d solver, bool
smoother_hole_filling = false)

Thanks in advance
Oliver




Archive powered by MHonArc 2.6.18.

Top of Page