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
Python Image Optimizer Script

Image-Optimizer Download and Install git clone https://github.com/stefankumpan/Image-Optimizer-Script.git cd Image-Optimizer-Script pip install -r req

Stefan Kumpan 0 Jul 15, 2021
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
A quick and dirty QT Statusbar implementation for grabbing GIFs from Tenor, since there is no offical or unofficial one I found. This was intended for use under Linux, however it was also functional enough on MacOS.

Statusbar-TenorGIF App for Linux A quick and dirty QT Statusbar implementation for grabbing GIFs from Tenor, since there is no offical one and I didnt

Luigi DaVinci 1 Nov 01, 2021
python app to turn a photograph into a cartoon

Draw This. Draw This is a polaroid camera that draws cartoons. You point, and shoot - and out pops a cartoon; the camera's best interpretation of what

Dan Macnish 2k Dec 19, 2022
Magic-Square - Creates a magic square by randomly generating a list until the list happens to be a magic square

Magic-Square Creates a magic square by randomly generating a list until the list happens to be a magic square. Done as simply as possible... Frequentl

Nick 2 Jan 01, 2022
Draw a torus passing through three given points.

PyTorusThreePoints Draw a torus passing through three given points. Usage import numpy as np import pyvista as pv from torus_three_points.main import

2 Nov 19, 2021
Napari 3D Ortho Viewer - an ortho viewer for napari for 3D images

napari-3d-ortho-viewer Napari 3D Ortho Viewer - an ortho viewer for napari for 3D images This napari plugin was generated with Cookiecutter using @nap

niklas netter 5 Nov 28, 2022
MyPaint is a simple drawing and painting program that works well with Wacom-style graphics tablets.

MyPaint A fast and dead-simple painting app for artists Features Infinite canvas Extremely configurable brushes Distraction-free fullscreen mode Exten

MyPaint 2.3k Jan 01, 2023
LSB Image Steganography Using Python

Steganography is the science that involves communicating secret data in an appropriate multimedia carrier, e.g., image, audio, and video files

Mahmut Can Gönül 2 Nov 04, 2021
Command line utility for converting images to seamless tiles

img2texture Command line utility for converting images to seamless tiles. The resulting tiles can be used as textures in games, compositing and 3D mod

Artёm IG 24 Dec 26, 2022
Pixel art as well as various sets for hand crafting

Pixel art as well as various sets for hand crafting

1 Nov 09, 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
Graphical tool to make photo collage posters

PhotoCollage Graphical tool to make photo collage posters PhotoCollage allows you to create photo collage posters. It assembles the input photographs

Adrien Vergé 350 Jan 02, 2023
Open source software for image correlation, distance and analysis

Douglas-Quaid Project Open source software for image correlation, distance and analysis. Strongly related to : Carl-Hauser Problem statement (@CIRCL)

Dominik Dancs 2 May 01, 2022
ProsePainter combines direct digital painting with real-time guided machine-learning based image optimization.

ProsePainter Create images by painting with words. ProsePainter combines direct digital painting with real-time guided machine-learning based image op

Morphogen 276 Dec 17, 2022
Manipulate EXIF and IFD metadata.

Tyf Copyright Distribution Support this project Buy Ѧ and: Send Ѧ to AUahWfkfr5J4tYakugRbfow7RWVTK35GPW Vote arky on Ark blockchain and earn Ѧ weekly

16 Jan 21, 2022
Napari plugin for iteratively improving 3D instance segmentation of cells (u-net x watershed)

iterseg napari plugin for iteratively improving unet-watershed segmentation This napari plugin was generated with Cookiecutter using @napari's cookiec

Abigail McGovern 3 May 16, 2022
Generate your own QR Code and scan it to see the results! Never use it for malicious purposes.

QR-Code-Generator-Python Choose the name of your generated QR .png file. If it happens to open the .py file (the application), there are specific comm

1 Dec 23, 2021
Samila is a generative art generator written in Python

Samila is a generative art generator written in Python, Samila let's you create arts based on many thousand points. The position of every single point is calculated by a formula, which has random par

Sepand Haghighi 947 Dec 30, 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