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.
Checklist
mainbranch).Proposed new feature or change
The
CreateFromPointCloudPoissonhas a whole range of arguments that are hardcoded in theExecutefunction.https://github.com/isl-org/Open3D/blob/4356c172767a65209d2fe6dd76ff571f10293249/cpp/open3d/geometry/SurfaceReconstructionPoisson.cpp#L419C1-L430C38
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 #6095