Metadata-Version: 2.1
Name: mesh-to-sdf
Version: 0.0.10
Summary: Calculate signed distance fields for arbitrary meshes
Home-page: https://github.com/marian42/mesh_to_sdf
Author: Marian Kleineberg
Author-email: mail@marian42.de
License: UNKNOWN
Description: # Calculate signed distance fields for arbitrary meshes
        
        This project calculates approximate SDFs for triangle meshes.
        It works for **non-watertight** meshes (meshes with holes), **self-intersecting** meshes, meshes with **non-manifold geometry** and meshes with **inconsistently oriented faces**.
        
        ## Install
        
        ```
        pip3 install mesh-to-sdf
        ```
        
        ## Examples
        
        ### Voxelize a mesh
        
        The `mesh_to_voxels` function creates an N ✕ N ✕ N array of SDF values.
        In this example, a mesh reconstructed using Marching Cubes and then rendered.
        
        ```python
        from mesh_to_sdf import mesh_to_voxels
        
        import trimesh
        import skimage
        
        mesh = trimesh.load('chair.obj')
        
        voxels = mesh_to_voxels(mesh, 64, pad=True)
        
        vertices, faces, normals, _ = skimage.measure.marching_cubes_lewiner(voxels, level=0)
        mesh = trimesh.Trimesh(vertices=vertices, faces=faces, vertex_normals=normals)
        mesh.show()
        ```
        ![Example of a mesh and a reconstructed SDF voxel volume](https://raw.githubusercontent.com/marian42/mesh_to_sdf/master/example/voxel.png)
        
        ### Sample SDF points non-uniformly near the surface
        
        This example creates 250,000 points, where most of the points are close to the surface and some are sampled uniformly.
        This is the method that is proposed and used in the [DeepSDF paper](https://arxiv.org/abs/1901.05103).
        In this example, the resulting points are rendered in red where the SDF is positive and in blue where it is negative.
        
        ```python
        from mesh_to_sdf import sample_sdf_near_surface
        
        import trimesh
        import pyrender
        import numpy as np
        
        mesh = trimesh.load('chair.obj')
        
        points, sdf = sample_sdf_near_surface(mesh, number_of_points=250000)
        
        colors = np.zeros(points.shape)
        colors[sdf < 0, 2] = 1
        colors[sdf > 0, 0] = 1
        cloud = pyrender.Mesh.from_points(points, colors=colors)
        scene = pyrender.Scene()
        scene.add(cloud)
        viewer = pyrender.Viewer(scene, use_raymond_lighting=True, point_size=2)
        ```
        
        ![Example of a mesh and a point cloud of non-uniformly sampled SDF points](https://raw.githubusercontent.com/marian42/mesh_to_sdf/master/example/non-uniform.png)
        
        ## How it works
        
        The general pipeline for calculating SDF in this project is as follows:
        
        1. Create 100 virtual laser scans of the shape from multiple angles.
        These each consist of a normal buffer and a depth buffer.
        2. Use the inverse MVP matrix and depth buffer of each scan to calculate a world-space surface point cloud
        3. Determine the value of the SDF for each query point by finding the closest surface point using a kd-tree
        4. Determine the sign of the SDF using either the normal of the closest surface point or by checking it against the depth buffers of the scans.
        When using normals, the sign is determined with a dot product.
        When using the depth buffer method, the point is projected in the frame of each render.
        By comparing the depth element of the depth buffer and depth of the query point, we determine if the query point is seen by the camera.
        The sign of the point is positive if it is seen by any of the cameras.
        
        This repository contains an implementation of the procedure proposed in the [DeepSDF paper](), as well as some alternatives.
        
        # Documentation
        
        ## mesh_to_sdf
        
        Calculate signed distance values for an array of given query points
        
        ```python
        mesh_to_sdf.mesh_to_sdf(mesh, query_points, surface_point_method='scan', sign_method='normal', bounding_radius=None, scan_count=100, scan_resolution=400, sample_point_count=10000000, normal_sample_count=11)
        ```
        
        Parameters
        - `mesh`: a [trimesh](https://trimsh.org/trimesh.html) mesh
        - `query_points`: an N ✕ 3 numpy array, containing the points for which the signed distance function should be calculated.
        - See *common parameters* for the remaining parameters
        
        Returns
        - a numpy array with N elemenents, containing the SDF for each query point
        
        ## mesh_to_voxels
        
        Calculate an N ✕ N ✕ N voxel volume of signed distance values for a given mesh.
        The mesh is first transformed to fit inside a cube ranging from -1 to 1.
        
        ```python
        mesh_to_sdf.mesh_to_voxels(mesh, voxel_resolution=64, surface_point_method='scan', sign_method='normal', scan_count=100, scan_resolution=400, sample_point_count=10000000, normal_sample_count=11, pad=False, check_result=False)
        ```
        
        Parameters
        - `mesh`: a [trimesh](https://trimsh.org/trimesh.html) mesh
        - `voxel_resolution`: the resolution N of the resulting voxel volume
        - `pad`: if `True`, the resulting array is padded with ones, ensuring a mesh without holes when reconstructing with Marching Cubes
        - `check_result`: if `True`, the result is checked for continuity.
        If the voxel volume is not a plausible signed distance field, an exception is thrown.
        - See *common parameters* for the remaining parameters
        
        Returns
        - a numpy array of shape N ✕ N ✕ N (or N + 2 ✕ N + 2 ✕ N + 2 when using padding)
        
        ## sample_sdf_near_surface
        
        Sample some points uniformly and some points near the shape surface and calculate SDFs for these points.
        This follows the procedure proposed in the [DeepSDF paper](https://arxiv.org/abs/1901.05103).
        The mesh is first transformed to fit inside the unit sphere.
        
        ```python
        mesh_to_sdf.sample_sdf_near_surface(mesh, number_of_points = 500000, surface_point_method='scan', sign_method='normal', scan_count=100, scan_resolution=400, sample_point_count=10000000, normal_sample_count=11, min_size=0)
        ```
        
        Parameters
        - `mesh`: a [trimesh](https://trimsh.org/trimesh.html) mesh
        - `number_of_points`: the number N of points to be sampled, including surface points and uniform points
        - `min_size`: The fraction of uniformly sampled that should be inside the shape.
        If this is 0.015 and less than 1.5% of uniformly sampled points have negative SDFs, an exception is thrown.
        This can be used to detect bad meshes.
        - See *common parameters* for the remaining parameters
        
        Returns
        - `points`: an N ✕ 3 numpy array containing the sample points
        - `sdf`: a numpy array of size N with the corresponding SDF values
        
        ## get_surface_point_cloud
        
        Returns an intermediate data structure containing a surface point cloud, scans and a kd-tree of the point cloud.
        This can be used if SDFs will be calculated multiple times for the same mesh or for debugging.
        
        ```python
        mesh_to_sdf.get_surface_point_cloud(mesh, surface_point_method='scan', bounding_radius=1, scan_count=100, scan_resolution=400, sample_point_count=10000000, calculate_normals=True)
        ```
        
        Parameters
        - `mesh`: a [trimesh](https://trimsh.org/trimesh.html) mesh
        - See *common parameters* for the remaining parameters
        
        Returns
        - an instance of `SurfacePointCloud`
        
        ## Common parameters
        - `surface_point_method`:
        The method to generate a surface point cloud.
        Either `'scan'` or `'sample'`.
        The scanning method creates virtual scans while the sampling method uses the triangles to sample surface points.
        The sampling method only works with watertight meshes with correct face normals, but avoids some of the artifacts that the scanning method creates.
        
        - `sign_method`:
        The method to determine the signs of the SDF values.
        Either `'normal'` or `'depth'`.
        The normal method uses normals of the point cloud.
        It works better for meshes with holes, but sometimes results in "bubble" artifacts.
        The depth method avoids the bubble artifacts but is less accurate.
        
        - `bounding_radius`:
        The radius of a sphere that contains all mesh vertices.
        If `None`, this value is calculated using the mesh.
        
        - `scan_count`:
        Number of scans when using the scanning method
        
        - `scan_resolution`:
        Resolution for the scans in pixels.
        
        - `sample_point_count`:
        Number of points to sample when using `surface_point_method='sample'`
        
        - `normal_sample_count`:
        Number of nearby surface points to check when using `sign_method='normal'`.
        The sign of the resulting SDF is determined by majority vote.
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.5
Description-Content-Type: text/markdown
