Open3D icon indicating copy to clipboard operation
Open3D copied to clipboard

Expose arguments of CreateFromPointCloudPoisson

Open hubernikus opened this issue 8 months ago • 0 comments

Checklist

Proposed new feature or change

The CreateFromPointCloudPoisson has a whole range of arguments that are hardcoded in the Execute function.

https://github.com/isl-org/Open3D/blob/4356c172767a65209d2fe6dd76ff571f10293249/cpp/open3d/geometry/SurfaceReconstructionPoisson.cpp#L419C1-L430C38

    float datax = 32.f;
    int base_depth = 0;
    int base_v_cycles = 1;
    float confidence = 0.f;
    float point_weight = 2.f * DEFAULT_FEM_DEGREE;
    float confidence_bias = 0.f;
    float samples_per_node = 1.5f;
    float cg_solver_accuracy = 1e-3f;
    int full_depth = 5;
    int iters = 8;
    bool exact_interpolation = false;

It would be useful for fine tuning to expose these arguments.

If this is of interest, I can prepare a pull request.

References

No response

Additional information

Related to https://github.com/isl-org/Open3D/issues/6095

hubernikus avatar May 20 '25 15:05 hubernikus