While many single-view 3D reconstruction methods that learn a shape embedding from a 2D image are able to capture the global shape properties, they have a tendency to ignore details such as holes or thin structures.
Methods such as voxels, octrees, points, and primitives are suffered from limited resolution and fixed mesh topology.
➡️ Implicit representations provide an alternative representation to overcome these limitations.
➡️ This paper adopt the Signed Distance Function(SDF), the most popular implicit surface representations.
This paper presents DISN(Deep Impicit Surface Network), which can generate a high-quality detail-rich 3D mesh from a 2D image by predicting the underlying signed distance fields.
DISN predicts the projected location for each 3D point on the 2D image and extracts local feature from the image feature maps.
DISN is the first method that constantly capture details such as holes and thin structures present in 3D shapes from single-view images.
Loss function
Given an image I,
SDF^I(⋅): ground truth SDF
goal of network f(⋅): estimate SDF^I(⋅)
This paper uses a MLP to map the given point location to a higher-dimensional feature space.
This high dimensional feature is then concatenated with global and local features respectively, and used to regress the SDF value.
Local Feature Extraction
With only global features, predicting overall shape is okay, but fails to produce details.
Local feature extraction helps to recover missing details by predicting residual SDF.
This paper introduces a local feature extraction method to focus on reconstructing fine-grained detials.
3D point p ∈ ℝ^3 is projected to a 2D location q ∈ ℝ^2 on the image plane, with the estimated camera parameters.(Fig 3)
Retrieve features on each feature map corresponding to location q and concatenate them to get the local image features.
Two decoders then take the global and local image features respectively as input with the point features, and make as SDF prediction.
The final SDF is the sum of these two predictions.
Loss Functions