Skip to content

Screened Poisson Surface Reconstruction by Michael Misha Kazhadan

Notifications You must be signed in to change notification settings

cdgray/PoissonRecon

Repository files navigation

PoissonRecon

Screened Poisson Surface Reconstruction by Michael Misha Kazhadan

Parameters

PoissonRecon:
--in <input points>
This string is the name of the file from which the point set will be read.
If the file extension is .ply, the file should be in PLY format, giving the list of oriented vertices with the x-, y-, and z-coordinates of the positions encoded by the properties x, y, and z and the x-, y-, and z-coordinates of the normals encoded by the properties nx, ny, and nz.
If the file extension is .bnpts, the file should be a binary file, consisting of blocks of 6 32-bit floats: x-, y-, and z-coordinates of the point's position, followed by the x-, y-, and z-coordinates of the point's normal. (No information about the number of oriented point samples should be specified.)
Otherwise, the file should be an ascii file with groups of 6, white space delimited, numbers: x-, y-, and z-coordinates of the point's position, followed by the x-, y- and z-coordinates of the point's normal. (No information about the number of oriented point samples should be specified.)
[--out <output triangle mesh>]
This string is the name of the file to which the triangle mesh will be written. The file is written in PLY format.
[--voxel <output voxel grid>]
This string is the name of the file to which the sampled implicit function will be written. The filw is wrtten out in binary, with the first 4 bytes corresponding to the (integer) sampling resolution, 2^d, and the next 4 x 2^d x 2^d x 2^d bytes corresponding to the (single precision) floating point values of the implicit function.
[--depth <reconstruction depth>]
This integer is the maximum depth of the tree that will be used for surface reconstruction. Running at depth d corresponds to solving on a voxel grid whose resolution is no larger than 2^d x 2^d x 2^d. Note that since the reconstructor adapts the octree to the sampling density, the specified reconstruction depth is only an upper bound.
The default value for this parameter is 8.
[--fullDepth <adaptive octree depth>]
This integer specifies the depth beyond depth the octree will be adapted. At coarser depths, the octree will be complete, containing all 2^d x 2^d x 2^d nodes.
The default value for this parameter is 5.
[--voxelDepth <voxel sampling depth>]
This integer is the depth of the regular grid over which the implicit function is to be sampled. Running at depth d corresponds to sampling on a voxel grid whose resolution is 2^d x 2^d x 2^d.
The default value for this parameter is the value of the --depth parameter.
[--cgDepth <conjugate gradients solver depth>]
This integer is the depth up to which a conjugate-gradients solver will be used to solve the linear system. Beyond this depth Gauss-Seidel relaxation will be used.
The default value for this parameter is 0.
[--scale <scale factor>]
This floating point value specifies the ratio between the diameter of the cube used for reconstruction and the diameter of the samples' bounding cube.
The default value is 1.1.
[--samplesPerNode <minimum number of samples>]
This floating point value specifies the minimum number of sample points that should fall within an octree node as the octree construction is adapted to sampling density. For noise-free samples, small values in the range [1.0 - 5.0] can be used. For more noisy samples, larger values in the range [15.0 - 20.0] may be needed to provide a smoother, noise-reduced, reconstruction.
The default value is 1.0.
[--pointWeight <interpolation weight>]
This floating point value specifies the importants that interpolation of the point samples is given in the formulation of the screened Poisson equation.
The results of the original (unscreened) Poisson Reconstruction can be obtained by setting this value to 0.
The default value for this parameter is 4. [--iters <GS iters>] This integer value specifies the number of Gauss-Seidel relaxations to be performed at each level of the hiearchy. The default value for this parameter is 8. [--threads <number of processing threads>] This integer specifies the number of threads across which the reconstruction algorithm should be parallelized. The default value for this parameter is equal to the numer of (virtual) processors on the executing machine. [--confidence] Enabling this flag tells the reconstructor to use the size of the normals as confidence information. When the flag is not enabled, all normals are normalized to have unit-length prior to reconstruction. [--nWeights] Enabling this flag tells the reconstructor to use the size of the normals to modulate the interpolation weights. When the flag is not enabled, all points are given the same weight. [--polygonMesh] Enabling this flag tells the reconstructor to output a polygon mesh (rather than triangulating the results of Marching Cubes). [--density] Enabling this flag tells the reconstructor to output the estimated depth values of the iso-surface vertices. [--verbose] Enabling this flag provides a more verbose description of the running times and memory usages of individual components of the surface reconstructor.

SurfaceTrimmer:
--in <input triangle mesh> This string is the name of the file from which the triangle mesh will be read. The file is read in PLY format and it is assumed that the vertices have a value field which stores the signal's value. (When run with --density flag, the reconstructor will output this field with the mesh vertices.) --trim <trimming value> This floating point values specifies the value for mesh trimming. The subset of the mesh with signal value less than the trim value is discarded. [--out <output triangle mesh>] This string is the name of the file to which the triangle mesh will be written. The file is written in PLY format. [--smooth <smoothing iterations>] This integer values the number of umbrella smoothing operations to perform on the signal before trimming. The default value is 5. [--aRatio <island area ratio>] This floating point value specifies the area ratio that defines a disconnected component as an "island". Connected components whose area, relative to the total area of the mesh, are smaller than this value will be merged into the output surface to close small holes, and will be discarded from the output surface to remove small disconnected components. The default value 0.001. [--polygonMesh] Enabling this flag tells the trimmer to output a polygon mesh (rather than triangulating the trimming results).


USAGE

For testing purposes, two oriented point sets are provided: Bunny: A set of 362,271 oriented point samples (represented in PLY format) was obtained by merging the data from the original Stanford Bunny range scans. The orientation of the sample points was estimated using the connectivity information within individual range scans. The original Poisson Reconstruction algorithm can be invoked by calling:
% PoissonRecon --in bunny.points.ply --out bunny.unscreened.ply --depth 10 --pointWeight 0
using the --pointWeight 0 argument to disable the screening.
By default, screening is enabled so the call:
% PoissonRecon --in bunny.points.ply --out bunny.screened.ply --depth 10
produces a reconstruction that more faithfully fits the input point positions.
A reconstruction of the bunny that does not close up the holes can be obtained by first calling:
% PoissonRecon --in bunny.points.ply --out bunny.screened.ply --depth 10 --density
to obtain a surface storing depth estimates with each vertex, and then calling:
% SurfaceTrimmer --in bunny.screened.ply --out bunny.screened.trimmed.ply --trim 7 --aRatio 0
to remove all subsets of the surface where the sampling density corresponds to a depth smaller than 7.
To fill in small holes in the reconstruction, the default value of the area ratio can be used instead:
% SurfaceTrimmer --in bunny.screened.ply --out bunny.screened.trimmed.ply --trim 7
Horse: A set of 100,000 oriented point samples (represented in ASCII format) was obtained by sampling a virtual horse model with a sampling density proportional to curvature, giving a set of non-uniformly distributed points.
The surface of the model can be reconstructed by calling the surface reconstructor as follows:
% PoissonRecon --in horse.npts --out horse.ply --depth 10
To convert the binary PLY format to Hugues Hoppe's ASCII mesh format, a Perl script is provided.
As an examples, the reconstructed bunny can be converted into the ASCII mesh format as follows:
% ply2mesh.pl bunny.ply > bunny.m


CHANGES

Version 3:

  1. The implementation of the --samplesPerNode parameter has been modified so that a value of "1" more closely corresponds to a distribution with one sample per leaf node.
  2. The code has been modified to support compilation under MSVC 2010 and the associated solution and project files are now provided. (Due to a bug in the Visual Studios compiler, this required modifying the implementation of some of the bit-shifting operators.)
    *Version 4: *
  3. The code supports screened reconstruction, with interpolation weight specified through the --pointWeight parameter.
  4. The code has been implemented to support parallel processing, with the number of threads used for parallelization specified by the --threads parameter.
  5. The input point set can now also be in PLY format, and the file-type is determined by the extension, so that the --binary flag is now obsolete.
  6. At depths coarser than the one specified by the value --minDepth the octree is no longer adaptive but rather complete, simplifying the prolongation operator.
    Version 4.5:
  7. The algorithmic complexity of the solver was reduced from log-linear to linear.
    Version 4.51:
  8. Smart pointers were added to ensure that memory accesses were in bounds.
    Version 5:
  9. The --density flag was added to the reconstructor to output the estimated depth of the iso-vertices.
  10. The SurfaceTrimmer executable was added to support trimming off the subset of the reconstructed surface that are far away from the input samples, thereby allowing for the generation of non-water-tight surface.
    Version 5.1:
  11. Minor bug-fix to address incorrect neighborhood estimation in the octree finalization.
    Version 5.5a:
  12. Modified to support depths greater than 14. (Should work up to 18 or 19 now.)
  13. Improved speed and memory performance by removing the construction of integral and value tables.
  14. Fixed a bug in Version 5.5 that used memory and took more time without doing anything useful. Version 5.6:
  15. Added the --normalWeight flag to support setting a point's interpolation weight in proportion to the magnitude of its normal. Version 5.7:
  16. Modified the setting of the constraints, replacing the map/reduce implementation with OpenMP atomics to reduce memory usage.
  17. Fixed bugs that caused numerical overflow when processing large point clouds on multi-core machines.
  18. Improved efficiency of the iso-surface extraction phse. Version 5.71:
  19. Added the function GetSolutionValue to support the evaluation of the implicit function at a specific point. Version 6:
  20. Modified the solver to use Gauss-Seidel relaxation instead of conjugate-gradients at finer resolution.
  21. Re-ordered the implementation of the solver so that only a windowed subset of the matrix is in memory at any time, thereby reducing the memory usage during the solver phase.
  22. Separated the storage of the data associated with the octree nodes from the topology.
    Version 6.1:
  23. Re-ordered the implementation of the iso-surface extraction so that only a windowed subset of the octree is in memory at any time, thereby reducing the memory usage during the extracted phase.
    Version 6.11:
  24. Fixed a bug that created a crash in the evaluation phase when --pointWeight is set zero.
    Version 6.12:
  25. Removed the OpenMP firstprivate directive as it seemed to cause trouble under Linux compilations.
    Version 6.13:
  26. Added a MemoryPointStream class in PointStream.inl to support in-memory point clouds.
  27. Modified the signature of Octree::SetTree in MultiGridOctreeData.h to take in a pointer to an object of type PointStream rather than a file-name.

About

Screened Poisson Surface Reconstruction by Michael Misha Kazhadan

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages