JA EN

Voxel

The smallest unit (volume element) when 3D space is divided into a regular grid. The 3D equivalent of a pixel, used to discretely represent spatial data in medical imaging, 3D modeling, and games.

A voxel (short for "volume element") is a single cubic cell in a regular 3D grid that partitions space into equal intervals. Just as a pixel is the smallest unit of a 2D image, a voxel is the smallest unit of a 3D volume. Each voxel can store attributes such as density, color, material type, or occupancy probability.

Voxel resolution is determined by the grid subdivision. A 256x256x256 voxel grid contains approximately 16.7 million cells. Increasing resolution improves representational accuracy but memory consumption grows cubically (doubling resolution requires 8x memory). To address this, sparse representations using Octrees (recursive subdivision only where detail exists) are widely employed.

In gaming, Minecraft popularized voxel-based world construction. Industrial applications include architectural BIM (Building Information Modeling), geological modeling, and computational fluid dynamics. Beyond Octrees, hash-based sparse voxel structures and neural implicit representations are active research areas for improving memory efficiency while maintaining high-fidelity 3D representations.

Related Terms

Related Articles