Definition

A voxel grid is a regular 3D grid in which each cell (voxel) indicates whether that part of space is occupied. It is intuitive, but memory-intensive: the number of cells grows with the cube of the resolution.

Memory

for a grid with resolution along each axis.

Voxels are a volumetric representation. An image is a 2D voxel grid (pixels), so CNNs extend naturally to voxels with 3D convolutions, as in 3D ShapeNets.

Appears in