Multi-view 3D reconstruction using neural rendering. Unofficial implementation of UNISURF, VolSDF, NeuS and more.

Overview

Volume rendering + 3D implicit surface = Neural 3D Reconstruction

Multi-view 3D reconstruction using neural rendering.

This repository holds ⚠️ unofficial ⚠️ pytorch implementations of:

  • Unisurf: Unifying neural implicit surfaces and radiance fields for multi-view reconstruction

  • NeuS: Learning neural implicit surfaces by volume rendering for multi-view reconstruction

  • [VolSDF] Volume rendering of neural implicit surfaces

and more...

Showcase

Trained with VolSDF@200k, with NeRF++ as background.

  • Above: 🚀 volume rendering of the scene (novel view synthesis)

  • Below: mesh extracted from the learned implicit shape

volsdf_nerf++_blended_norm_5c0d13_rgb&mesh_576x768_450_archimedean_spiral_400
full-res video: (35 MiB, [email protected]@30fps) [click here]

Trained with NeuS @300k, with NeRF++ as background.

  • Above: 🚀 volume rendering of the scene (novel view synthesis)
  • Middle: normals extracted from the learned implicit shape ($\nabla_{\mathbf{x}} s$)
  • Below: mesh extracted from the learned implicit shape
neus_55_nomask_new_rgb&normal&mesh_300x400_60_small_circle_256 neus_37_nomask_new_rgb&normal&mesh_300x400_60_small_circle_256 neus_65_nomask_new_rgb&normal&mesh_360x400_60_small_circle_256
neus_97_nomask_new_rgb&normal&mesh_300x400_60_small_circle_256 neus_105_nomask_new_rgb&normal&mesh_390x400_60_small_circle_256 neus_24_nomask_new_rgb&normal&mesh_360x400_60_small_circle_256

What?

The overall topic of the implemented papers is multi-view surface and appearance reconstruction from pure posed images.

  • studying and bridging between [DeepSDF/OccupancyNet]-like implicit 3D surfaces and volume rendering (NeRF).
  • framework:

framework

What's known / Ground Truth / Supervision What's learned
ONLY Multi-view posed RGB images. (no masks, no depths, no GT mesh or pointclouds, nothing.) 3D surface / shape
3D appearance

previous: surface rendering; now: volume rendering

From one perspective, the implemented papers introduce volume rendering to 3D implicit surfaces to differentiably render views and reconstructing scenes using photometric reconstruction loss.

Rendering methods in previous surface reconstruction approach Rendering method in this repo (when training)
Surface rendering Volume rendering

The benefit of using volume rendering is that it diffuses gradients widely in space, and can efficiently learns a roughly correct shape at the very early beginning of training without mask supervision, avoiding bad local minimas when learning shapes, which is often encountered when using surface rendering even with mask supervision.

config:
[click me]
@0 iters @3k iters
@16 mins
@10k iters
@1 hours
@200k iters
@ 18.5 hours
Mesh extracted from the learned shape mesh_0k mesh_3k mesh_10k mesh_200k
View rendered from the learned appearance 00000000 00003000 00010000 00200000

previous: NeRF's volume density; now: implicit surface

From another perspective, they change the original NeRF's shape representation (volume density $\sigma$) to a 3D implicit surface model, whose iso-surface is defined to represent spatial surfaces.

Shape representation in NeRF Shape representation in this repo
Volume density Occupancy net (UNISURF)
DeepSDF (VolSDF/NeuS)

The biggest disadvantage of NeRF's shape representation is that it considers objects as volume clouds, which actually does not guarantees an exact surface, since there is no constraint on the learned density.

Representing shapes with implicit surfaces can force the volume density to be associated with a exact surface.

What's more, the association (or, the mapping function that maps implicit surface value to volume density) can be controlled either manually or by learn-able parameters, allowing the shape representation to be more surface-like or more volume-like, meeting different needs of different training stages.

sdf2sigma
Demonstration of controllable mappings from sdf value to volume density value. @VolSDF

Hence, the training scheme of approaches in this repo can be roughly divided as follows (not discrete stages, continuously progressing instead):

  • at the earlier stage of learning shapes, the shape representation is more volume-like, taking into account more neighboring points along the ray when rendering colors. The network fast learns a roughly correct shape and appearance.
  • while in the later stage, the shape representation is more surface-like, almost only taking into account the exact intersected point with the surface along the ray . The network slowly learns the fine thin structures of shapes and fine details of appearance.

You can see that as the controlling parameter let narrower and narrower neighboring points being considered during volume rendering, the rendered results are getting almost equivalent to surface rendering. This is proved in UNISURF, and also proved with results showed in the section [docs/usage.md#use surface rendering instead of volume rendering].

limit

What's different of the implemented papers:

  • how to map a implicit surface value to a volume density representation, or how to (accurately) calculate volume rendering's opacity with such exact surface representation.
  • how to efficiently sample points on camera rays taking advantage of the exact surface
  • You can find out more on my [personal notes] (In Chinese only).

Future

Currently, the biggest problem of methods contained in this repo is that the view-dependent reflection effect is baked into the object's surface, similar with IDR, NeRF and so on. In other words, if you place the learned object into a new scene with different ambient light settings, the rendering process will have no consideration of the new scene's light condition, and keeps the ambient light's reflection of the old trained scene with it.

However, as the combination of implicit surface with NeRF has come true, ambient light and material decomposition can be much easier for NeRF-based frameworks, since now shapes are represented by the underlying neural surface instead of volume densities.

Results and trained models

The trained models are stored in [GoogleDrive] / [Baidu, code: reco].

For more visualization of more trained results, see [docs/trained_models_results.md].

USAGE

See [docs/usage.md] for detailed usage documentation.

NOTES

TODO

  • NeuS

    • Compare with NeuS official repo.
    • Fix performance bug (camera inside surface after training) on some of the DTU instances.
  • VolSDF

    • improve VolSDF's sampling performance
    • release more results
  • UNISURF

    • Fix performance bug (huge artifact after training) on some of the DTU instances.
  • general

    • train camera
    • cluster training configs
    • DDP support
    • refine GPU usage and try to allow for at least 2080 Ti.
    • surface rendering option.
    • eval script for RGB
    • eval script for mesh CD

CITATION

  • UNISURF
@article{oechsle2021unisurf,
  title={Unisurf: Unifying neural implicit surfaces and radiance fields for multi-view reconstruction},
  author={Oechsle, Michael and Peng, Songyou and Geiger, Andreas},
  journal={arXiv preprint arXiv:2104.10078},
  year={2021}
}
  • NeuS
@article{wang2021neus,
  title={NeuS: Learning Neural Implicit Surfaces by Volume Rendering for Multi-view Reconstruction},
  author={Wang, Peng and Liu, Lingjie and Liu, Yuan and Theobalt, Christian and Komura, Taku and Wang, Wenping},
  journal={arXiv preprint arXiv:2106.10689},
  year={2021}
}
  • VolSDF
@article{yariv2021volume,
  title={Volume Rendering of Neural Implicit Surfaces},
  author={Yariv, Lior and Gu, Jiatao and Kasten, Yoni and Lipman, Yaron},
  journal={arXiv preprint arXiv:2106.12052},
  year={2021}
}
  • NeRF++
@article{kaizhang2020,
    author    = {Kai Zhang and Gernot Riegler and Noah Snavely and Vladlen Koltun},
    title     = {NeRF++: Analyzing and Improving Neural Radiance Fields},
    journal   = {arXiv:2010.07492},
    year      = {2020},
}
  • SIREN
@inproceedings{sitzmann2019siren,
    author = {Sitzmann, Vincent and Martel, Julien N.P. and Bergman, Alexander W. and Lindell, David B. and Wetzstein, Gordon},
    title = {Implicit Neural Representations with Periodic Activation Functions},
    booktitle = {Proc. NeurIPS},
    year={2020}
}

Acknowledgement

This repository modifies codes or draws inspiration from:

Contact

Feel free to submit issues or contact Jianfei Guo(郭建非) guojianfei [at] pjlab.org.cn.
PRs are also very welcome 😃

We are hiring!

🎉 🎉 🎉

On behalf of Intelligent Transportation and Auto Driving Group in Shanghai AI Lab, we are hiring researcher/engineer/full-time intern for Computer Graphics and 3D Rendering Algorithm (base in Shanghai)

上海人工智能实验室智慧交通与自动驾驶团队招聘「图形学算法研究员」和「3D场景生成研究员」。实习、校招、社招均有海量HC。

图形学算法研究员

岗位职责

  1. 结合计算机图形学和深度学习进行研究,并探索相关技术在自动驾驶数据上的应用。
  2. 研究基于神经渲染器、可微渲染等技术的高质量三维重建技术。
  3. 研究面向数字孪生的城市场景重建技术。
  4. 在图形学和计算机视觉领域跟踪学术和产业前沿方案,在单点算法上实现突破业界、原型验证,持续构建三维重建领域的技术竞争力。
  5. 设计实现基于高质量三维重建数据嵌入的自动驾驶感知仿真平台,提升自动驾驶仿真数据在感知模型上的可用性。

任职要求

  1. 计算机科学与技术、电子工程、自动化、人工智能、应用数学、车辆工程等相关专业,本科及以上学历。
  2. 有扎实的图形学基础,理解基本渲染管线,了解PBR光照、材质模型。
  3. 熟悉机器学习与深度学习的基本理论,熟悉编程/脚本语言:C++/C/Python,至少使用过PyTorch、TensorFlow、Caffe等框架中的一种。
  4. 加分项:熟悉并掌握一个或多个下列方向:神经网络隐式三维表示(如NeRF),场景三维重建,3D人体重建与生成
  5. 加分项:理解渲染管线中的GPU编程原理,或具有GPU CUDA开发和性能优化经验
  6. 加分项:有Unity, UE4等游戏引擎或Carla、AirSim等仿真项目的开发使用经验,或熟悉车辆、行人运动仿真
  7. 加分项:有自动驾驶、计算机视觉和图像处理领域相关项目和研究背景。
  8. 加分项:有相关领域顶级学术会议/期刊论文发表经历。

3D场景生成研究员

岗位职责

  1. 研究基于深度学习的生成模型在自动驾驶数据上的应用。
  2. 研究利用GAN/VAE等生成学习技术针对自动驾驶感知场景数据生成算法。
  3. 负责基于深度学习与生成模型算法进行自动驾驶感知数据仿真。
  4. 负责跟踪学术界和工业界关于生成模型在计算机视觉、自动驾驶、智慧城市、数字孪生等领域的最新研究进展。
  5. 设计实现基于生成模型的自动驾驶感知仿真平台,并利用生成数据提升下游感知任务的性能。

任职要求

  1. 计算机科学与技术、电子工程、自动化、人工智能、应用数学、车辆工程等相关专业,本科及以上学历。
  2. 有扎实的深度学习基础,熟悉机器学习与深度学习的基本理论,并要求至少熟练掌握PyTorch、TensorFlow、Caffe等框架中的一种。
  3. 代码能力强,有良好的C++/Python编码习惯,能够快速设计并执行实验、验证想法、具备能支持全栈开发工作的学习能力。
  4. 加分项:有计算机图形学、立体视觉、三维重建、神经渲染、可微渲染等方向研究经历。
  5. 加分项:熟悉并掌握一个或多个下列方向:3D生成模型,3D人体重建与生成,神经网络隐式三维表示(如NeRF)
  6. 加分项:有自动驾驶领域相关项目和研究背景。
  7. 加分项:在相关领域有顶级学术会议/期刊论文发表经历。

对以上两个岗位感兴趣的同学请发送简历到 shibotian [at] pjlab.org.cn, guojianfei [at] pjlab.org.cn。标题务必包含「应聘」两个字,谢谢。


About Shanghai AI Lab/关于上海人工智能实验室

上海人工智能实验室是中国人工智能领域的新型科研机构,由汤晓鸥、姚期智、陈杰等多位世界人工智能领域知名学者领衔发起成立,于2020年7月在世界人工智能大会正式揭牌。

实验室研究团队由一流科学家和团队按新机制组建。并开展战略性、原创性、前瞻性的科学研究与技术攻关,突破人工智能的重要基础理论和关键核心技术,打造“突破型、引领型、平台型”一体化的大型综合性研究基地,支撑中国人工智能产业实现跨越式发展,目标建成国际一流的人工智能实验室,成为享誉全球的人工智能原创理论和技术的策源地。

实验室先后与上海交通大学、复旦大学、浙江大学、中国科学技术大学、香港中文大学、同济大学、华东师范大学等知名高校签订战略合作协议,建立科研人员双聘和职称互认机制,汇聚国内国际优势资源,探索建立创新型的评价考核制度和具有国际竞争力的薪酬体系及条件保障。

上海人工智能实验室官方网站:https://www.shlab.org.cn/

智能交通与自动驾驶研发岗位招聘:https://www.shlab.org.cn/news/5443060

Owner
Jianfei Guo
Thrive, don't just exist.
Jianfei Guo
Rotates your images in the spirit of rot13

Image Rotator (imrot10) Its like rot13 but for images. Calling the algorithm imrot10 for im = image, rot = rotation, 10 = default magnitude. Unfortuna

Sarah 2 Dec 10, 2021
QSIprep: Preprocessing and analysis of q-space images

QSIprep: Preprocessing and analysis of q-space images Full documentation at https://qsiprep.readthedocs.io About qsiprep configures pipelines for proc

Lifespan Informatics and Neuroimaging Center 88 Dec 15, 2022
View images in the terminal using ansi escape codes and python

terminal-photo-viewer view images in the terminal using ansi escape codes and python !! Only tested on Ubuntu 20.04.3 LTS with python version 3.8.10 D

1 Nov 30, 2021
Craft PNG files that appear completely different in Apple software

Ambiguous PNG Packer Craft PNG files that appear completely different in Apple software

David Buchanan 1k Dec 29, 2022
Convert HDR photos taken by iPhone 12 (or later) to regular HDR images

heif-hdrgainmap-decode Convert HDR photos taken by iPhone 12 (or later) to regular HDR images. Installation First, make sure you have the following pa

Star Brilliant 5 Nov 13, 2022
A proof-of-concept implementation of a parallel-decodable PNG format

mtpng A parallelized PNG encoder in Rust by Brion Vibber [email protected] Backgrou

Brion Vibber 193 Dec 16, 2022
Python binding to Skia Graphics Library

Skia python binding Python binding to Skia Graphics Library. Binding based on pybind11. Currently, the binding is under active development. Install Bi

Kota Yamaguchi 170 Jan 06, 2023
Fixed Version Of Blender Low Poly Rock Generator For Blender 3.0.0

Blender (3.0.0) - Low Poly Rock Generator This is an addon for Blender 3.0.0 to generate low poly rocks. It was based on an addon that unfortunately h

3 Mar 24, 2022
Herramienta Para Snipear Nitros Y Participar En Sorteos Automaticamente

Crips Nitro Sniper Discord Nitro Sniper Y Auto Participar En Sorteos ⚠️ Es Bastante Rapido Y Efectivo Hecho En Python Como Usar ( Python ) : python -m

1 Oct 27, 2021
Tools for making image cutouts from sets of TESS full frame images

Cutout tools for astronomical images Astrocut provides tools for making cutouts from sets of astronomical images with shared footprints. It is under a

Space Telescope Science Institute 20 Dec 16, 2022
Png2Jpg tool will help you convert from png image format to jpg images format.

PNG 2 JPG All codes assume running from root directory. Please update the sys path at the beginning of the codes before running. Over View Png2Jpg too

Nguyễn Trường Lâu 2 Dec 27, 2021
pix2tex: Using a ViT to convert images of equations into LaTeX code.

The goal of this project is to create a learning based system that takes an image of a math formula and returns corresponding LaTeX code.

Lukas Blecher 2.6k Dec 30, 2022
Fast Image Retrieval is an open source image retrieval framework

Fast Image Retrieval is an open source image retrieval framework release by Center of Image and Signal Processing Lab (CISiP Lab), Universiti Malaya. This framework implements most of the major binar

CISiP Lab 39 Nov 25, 2022
starfish is a Python library for processing images of image-based spatial transcriptomics.

starfish: scalable pipelines for image-based transcriptomics starfish is a Python library for processing images of image-based spatial transcriptomics

199 Dec 08, 2022
Javascript image annotation tool based on image segmentation.

JS Segment Annotator Javascript image annotation tool based on image segmentation. Label image regions with mouse. Written in vanilla Javascript, with

Kota Yamaguchi 513 Nov 15, 2022
DrawBot is a powerful, free application for macOS that invites you to write Python scripts to generate two-dimensional graphics

DrawBot is a powerful, free application for macOS that invites you to write Python scripts to generate two-dimensional graphics.

Frederik Berlaen 344 Jan 06, 2023
LabelMe annotation tool source code

LabelMe annotation tool source code Here you will find the source code to install the LabelMe annotation tool on your server. LabelMe is an annotation

MIT CSAIL Computer Vision 1.3k Jan 03, 2023
Simple Python package to convert an image into a quantized image using a customizable palette

Simple Python package to convert an image into a quantized image using a customizable palette. Resulting image can be displayed by ePaper displays such as Waveshare displays.

Luis Obis 3 Apr 13, 2022
A not exist person image generator python module

A not exist person image generator python module

Fayas Noushad 2 Dec 03, 2021
A GUI-based (PyQt5) tool used to design 2D linkage mechanism.

Pyslvs-UI A GUI-based (PyQt5) tool used to design 2D linkage mechanism. Planar Linkages Simulation Python-Solvespace: Kernel from Solvespace with Cyth

Yuan Chang 141 Dec 13, 2022