Skip to content

geometry-processing/Robust-Implicit-Surface-Networks

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

38 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Robust Computation of Implicit Surface Networks for Piecewise Linear Functions

Xingyi Du, Qingnan Zhou, Nathan Carr, Tao Ju
ACM Transaction on Graphics (Proceedings of SIGGRAPH 2022)

Project Page

Build

Use the following commands to build on Mac.

mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=Release ..
make

Program impl_arrangement and material_interface will be generated in the build subdirectory.

Usage

impl_arrangement

The program creates a polygonal mesh discretization of the implicit arrangement of a collection of implicit functions on a given tetrahedron grid.

Usage:

./impl_arrangement [OPTIONS] config_file

Options:

  • -h,--help: Print help message and exit.
  • -T,--timing-only BOOLEAN: When set to 1 (True), the program only records timing without saving results. Default value is 0 (False).
  • -R,--robust-test BOOLEAN: When set to 1 (True), the program performs robustness test. The program will run twice with different ordering of input functions, and check if the results are consistent. Default value is 0 (False).

Positionals:

  • config_file (REQUIRED): Configuration file, specifying input/output paths and algorithm parameters.

The config_file should be a JSON file with the following named parameters:

  • tetMeshFile: Absolute path to the file storing input tetrahedral grid. It is a JSON file storing vertex coordinates and tetrahedrons. See examples/tet_mesh/tet5_grid_10k.json for a concrete example.
  • funcFile: Absolute path to the file storing input implicit functions. See this repo for details about the file format.
  • outputDir: Absolute path to the directory to store output files.
  • useLookup: Whether to use look-up tables to accelerate tetrahedron processing (section 6 of our paper). Default value is "true".
  • use2funcLookup: Whether to use look-up tables for tetrahedral with two active functions (section 6 of our paper). Default value is "true".
  • useTopoRayShooting: Whether to use topological ray shooting to compute the spatial decomposition induced by the arrangement (section 7 of our paper). Default value is "true".

Note that tetMeshFile, funcFile and outputDir take absolute paths.

An example config file is examples/implicit_arrangement/config.json. You should change the paths in the config file according to your own system.

Test:

compute implicit arrangement

./impl_arrangement ../examples/implicit_arrangement/config.json

record timing without saving results

./impl_arrangement -T 1 ../examples/implicit_arrangement/config.json

perform robustness test

./impl_arrangement -R 1 ../examples/implicit_arrangement/config.json

material_interface

The program creates a polygonal mesh discretization of the material interfaces of a collection of material functions on a given tetrahedron grid.

Usage:

./material_interface [OPTIONS] config_file

Options:

  • -h,--help: Print help message and exit.
  • -T,--timing-only BOOLEAN: When set to 1 (True), the program only records timing without saving results. Default value is 0 (False).
  • -R,--robust-test BOOLEAN: When set to 1 (True), the program performs robustness test. The program will run twice with different ordering of input functions, and check if the results are consistent. Default value is 0 (False).

Positionals:

  • config_file (REQUIRED): Configuration file, specifying input/output paths and algorithm parameters.

The config_file should be a JSON file with the following named parameters:

  • tetMeshFile: Absolute path to the file storing input tetrahedral grid. It is a JSON file storing vertex coordinates and tetrahedrons. See examples/tet_mesh/tet5_grid_10k.json for a concrete example.
  • materialFile: Absolute path to the file storing input material functions. See this repo for details about the file format.
  • outputDir: Absolute path to the directory to store output files.
  • useLookup: Whether to use look-up tables to accelerate tetrahedron processing (section 6 of our paper). Default value is "true".
  • use3funcLookup: Whether to use look-up tables for tetrahedral with three active functions (section 6 of our paper). Default value is "true".
  • useTopoRayShooting: Whether to use topological ray shooting to compute the spatial decomposition induced by the material interfaces (section 7 of our paper). Default value is "true".

Note that tetMeshFile, materialFile and outputDir take absolute paths.

An example config file is examples/material_interface/config.json. You should change the paths in the config file according to your own system.

Test:

compute material interface

./material_interface ../examples/material_interface/config.json

record timing without saving results

./material_interface -T 1 ../examples/material_interface/config.json

perform robustness test

./material_interface -R 1 ../examples/material_interface/config.json

Output

The complete set of output files include data files (mesh.json, mesh_patches.msh, mesh_chains.msh and mesh_cells.msh) and information files (timings.json and stats.json). In timing-only mode (-T 1), the program only generates information files. In robustness test mode (-R 1), no output files are generated. The result of the robustness test is in command line output.

data files

mesh.json: JSON file storing the following key-value pairs

key value description
points #Vx3 matrix of double numbers Vertex coordinates of the surface network mesh.
faces vector of vector of integers Polygonal faces of the surface network mesh. Each face is encoded by a vector of indices of face boundary vertices.
edges #Ex2 matrix of integers Edges of the surface network mesh. Each edge is encoded by a pair of vertex indices.
chains vector of vector of integers Chains of non-manifold edges. Each chain is encoded by a vector of edge indices.
corners vector of integers Indices of non-manifold vertices.
patches vector of vector of integers A patch is a connected component of faces bounded by non-manifold edges. Each patch is encoded by a vector of face indices.
shells vector of vector of integers A shell is a connected component of the boundary of a 3D region partitioned by the surface network. Each shell is encoded by a vector of oriented patch indices. The positive side of patch i has index 2i. The negative side of patch i has index 2i+1.
cells vector of vector of integers A cell is a 3D region partitioned by the surface network. Each cell is encoded by a vector of shell indices.

Note: all indices start from 0.

mesh_patches.msh, mesh_chains.msh and mesh_cells.msh store the same data as chains, patches and cells in mesh.json, but in MSH format. We can view these MSH files using Gmsh.

information files

timing.json: timing of different stages of our pipeline.

stats.json: statistics of intermediate date in our pipeline, e.g., number of surface network mesh vertices.

About

The code of paper "Robust Computation of Implicit Surface Networks for Piecewise Linear Functions" (SIGGRAPH 2022)

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • C++ 97.7%
  • CMake 2.2%
  • C 0.1%