Softras

Project page of paper "Soft Rasterizer: A Differentiable Renderer for Image-based 3D Reasoning"
Alternatives To Softras
Project NameStarsDownloadsRepos Using ThisPackages Using ThisMost Recent CommitTotal ReleasesLatest ReleaseOpen IssuesLicenseLanguage
Three.js92,476
4 hours ago508mitJavaScript
JavaScript 3D Library.
React Three Fiber22,7491232 days ago147September 23, 202262mitTypeScript
🇨🇭 A React renderer for Three.js
Tinyrenderer16,118
4 months ago38otherC++
A brief computer graphics / rendering course
Mini3d1,962
a month ago5mitC
3D Software Renderer in 700 Lines !!
Deep3dfacereconstruction1,633
6 months ago89mitPython
Accurate 3D Face Reconstruction with Weakly-Supervised Learning: From Single Image to Image Set (CVPRW 2019)
Opengraphic1,482
13 days ago1gpl-3.0
Graphic Engine & Game Engine lists
Renderer1,335
2 years agomitC
A shader-based software renderer written from scratch in C89
3dtilesrendererjs1,082
13 hours ago30July 02, 202241apache-2.0JavaScript
Renderer for 3D Tiles in Javascript using three.js
Neural_renderer1,027
a year ago25mitPython
"Neural 3D Mesh Renderer" (CVPR 2018) by H. Kato, Y. Ushiku, and T. Harada.
Neural_renderer940
a year ago59otherPython
A PyTorch port of the Neural 3D Mesh Renderer
Alternatives To Softras
Select To Compare


Alternative Project Comparisons
Readme

Soft Rasterizer (SoftRas)

This repository contains the code (in PyTorch) for "Soft Rasterizer: A Differentiable Renderer for Image-based 3D Reasoning" (ICCV'2019 Oral) by Shichen Liu, Tianye Li, Weikai Chen and Hao Li.

Contents

  1. Introduction
  2. Usage
  3. Applications
  4. Contacts

Introduction

Soft Rasterizer (SoftRas) is a truly differentiable renderer framework with a novel formulation that views rendering as a differentiable aggregating process that fuses probabilistic contributions of all mesh triangles with respect to the rendered pixels. Thanks to such "soft" formulation, our framework is able to (1) directly render colorized mesh using differentiable functions and (2) back-propagate efficient supervision signals to mesh vertices and their attributes (color, normal, etc.) from various forms of image representations, including silhouette, shading and color images.

Usage

The code is built on Python3 and PyTorch 1.6.0. CUDA (10.1) is needed in order to install the module. Our code is extended on the basis of this repo. 6/3/2021 update note: we add testing models and recontructed color meshes below, and also slightly optimized the code structure! Previous version is archived in the legacy branch.

To install the module, using

python setup.py install

Applications

0. Rendering

We demonstrate the rendering effects provided by SoftRas. Realistic rendering results (1st and 2nd columns) can be achieved with a proper setting of sigma and gamma. With larger sigma and gamma, one can obtain renderings with stronger transparency and blurriness (3rd and 4th column).

CUDA_VISIBLE_DEVICES=0 python examples/demo_render.py

1. 3D Unsupervised Single-view Mesh Reconstruction

By incorporating SoftRas with a simple mesh generator, one can train the network with multi-view images only, without requiring any 3D supervision. At test time, one can reconstruct the 3D mesh, along with the mesh texture, from a single RGB image. Below we show the results of single-view mesh reconstruction on ShapeNet.

Download shapenet rendering dataset provided by NMR:

bash examples/recon/download_dataset.sh

To train the model:

CUDA_VISIBLE_DEVICES=0 python examples/recon/train.py -eid recon

To test the model:

CUDA_VISIBLE_DEVICES=0 python examples/recon/test.py -eid recon \
    -d 'data/results/models/recon/checkpoint_0200000.pth.tar'

We also provide our trained model here:

  • SoftRas trained with silhouettes supervision (62+ IoU): google drive
  • SoftRas trained with shading supervision (64+ IoU, test with --shading-model arg): google drive
  • SoftRas reconstructed meshes with color (random sampled): google drive

2. Image-based Shape Deformation

SoftRas provides strong supervision for image-based mesh deformation. We visualize the deformation process from a sphere to a car model and then to a plane given supervision from multi-view silhouette images.

CUDA_VISIBLE_DEVICES=0 python examples/demo_deform.py

The optimized mesh is included in data/obj/plane/plane.obj

3. Pose Optimization for Rigid Objects

With scheduled blurry renderings, one can obtain smooth energy landscape that avoids local minima. Below we demonstrate how a color cube is fitted to the target image in the presence of large occlusions. The blurry rendering and the corresponding rendering losses are shown in the 3rd and 4th columns respectively.

4. Non-rigid Shape Fitting

We fit the parametric body model (SMPL) to a target image where the part (right hand) is entirely occluded in the input view.

Contacts

Shichen Liu: [email protected]

Any discussions or concerns are welcomed!

Citation

If you find our project useful in your research, please consider citing:

@article{liu2019softras,
  title={Soft Rasterizer: A Differentiable Renderer for Image-based 3D Reasoning},
  author={Liu, Shichen and Li, Tianye and Chen, Weikai and Li, Hao},
  journal={The IEEE International Conference on Computer Vision (ICCV)},
  month = {Oct},
  year={2019}
}
@article{liu2020general,
  title={A General Differentiable Mesh Renderer for Image-based 3D Reasoning},
  author={Liu, Shichen and Li, Tianye and Chen, Weikai and Li, Hao},
  journal={IEEE Transactions on Pattern Analysis and Machine Intelligence},
  year={2020},
  publisher={IEEE}
}
Popular 3d Graphics Projects
Popular Renderer Projects
Popular Graphics Categories
Related Searches

Get A Weekly Email With Trending Projects For These Categories
No Spam. Unsubscribe easily at any time.
Python
3d
Rendering
Mesh
Renderer
Computer Graphics
3d Reconstruction
Geometry Processing