3D Representations: Difference between revisions

From David's Wiki
(Created page with "Ways to represent 3D objects and scenes. ===Collection of images=== Just a set of 2D images. Videos may also fall under this category. Images may or may not have depth and...")
 
No edit summary
Line 1: Line 1:
Ways to represent 3D objects and scenes.
Ways to represent 3D objects and scenes.


==Representations==
===Collection of images===
===Collection of images===
Just a set of 2D images. Videos may also fall under this category.   
Just a set of 2D images. Videos may also fall under this category.   
Line 25: Line 26:
A list of vertices (<math>N \times 3</math>) and triangles (<math>N \times 3</math>).   
A list of vertices (<math>N \times 3</math>) and triangles (<math>N \times 3</math>).   
The current standard representation used in real-time 3D applications.
The current standard representation used in real-time 3D applications.
==Conversions==
===Volume rendering===
Volume rendering converts volumes to 2D images.
===Ray marching===
Ray marching converts signed distance fields to 2D images.
===Marching cubes===
Marching cubes converts volumes to meshes.


==See Also==
==See Also==
* [[Image-based rendering]]
* [[Image-based rendering]]

Revision as of 19:16, 10 February 2021

Ways to represent 3D objects and scenes.

Representations

Collection of images

Just a set of 2D images. Videos may also fall under this category.
Images may or may not have depth and may or may not be posed.

Light Field

This is similar to a collection of images.
However, instead of thinking of it as a set of images, each pixel represents the color along a ray in 3D space.

Volume

A volume is a dense 3D dataset \(\displaystyle F: \mathbb{R}^2 \to \mathbb{R}\) where the value at each position \(\displaystyle (x,y,z)\) corresponds to a density.
Volume rendering is used project a 3D volume into a 2D image by sampling the volume along a ray for each pixel in the 2D image.

Signed Distance Field

A signed distance field is a dense 3D dataset \(\displaystyle F: \mathbb{R}^2 \to \mathbb{R}\) where each position represents a distance to the nearest surface.
Positive values represent a point on the exterior of an object whereas negative values represent a point on the interior.
Ray marching is used to render signed distance fields into 2D images.

Point-clouds

A list of points in 3D (\(\displaystyle N \times 3\)). Points may also have color or other values.
Typically points are not semantically labeled so points are entirely unrelated to each other.

Mesh

A list of vertices (\(\displaystyle N \times 3\)) and triangles (\(\displaystyle N \times 3\)).
The current standard representation used in real-time 3D applications.

Conversions

Volume rendering

Volume rendering converts volumes to 2D images.

Ray marching

Ray marching converts signed distance fields to 2D images.

Marching cubes

Marching cubes converts volumes to meshes.

See Also