MayaFlux 0.5.0
Digital-First Multimedia Processing Framework
Loading...
Searching...
No Matches

◆ Role

enum class MayaFlux::Kakshya::DataDimension::Role : uint8_t
strong

Semantic role of the dimension.

Used to indicate the intended interpretation of the dimension, enabling generic algorithms to adapt to data structure.

Enumerator
TIME 

Temporal progression (samples, frames, steps)

CHANNEL 

Parallel streams (audio channels, color channels)

SPATIAL_X 

Spatial X axis (images, tensors)

SPATIAL_Y 

Spatial Y axis.

SPATIAL_Z 

Spatial Z axis.

FREQUENCY 

Spectral/frequency axis.

POSITION 

Vertex positions (3D space)

NORMAL 

Surface normals.

TANGENT 

Tangent vectors.

BITANGENT 

Bitangent vectors.

UV 

Texture coordinates.

COLOR 

Color data (RGB/RGBA)

DEPTH 

Distance from the observation point (depth, disparity, range)

INDEX 

Index buffer data.

MIP_LEVEL 

Mipmap levels.

CUSTOM 

User-defined or application-specific.

Definition at line 236 of file NDData.hpp.

236 : uint8_t {
237 TIME, ///< Temporal progression (samples, frames, steps)
238 CHANNEL, ///< Parallel streams (audio channels, color channels)
239 SPATIAL_X, ///< Spatial X axis (images, tensors)
240 SPATIAL_Y, ///< Spatial Y axis
241 SPATIAL_Z, ///< Spatial Z axis
242 FREQUENCY, ///< Spectral/frequency axis
243 POSITION, ///< Vertex positions (3D space)
244 NORMAL, ///< Surface normals
245 TANGENT, ///< Tangent vectors
246 BITANGENT, ///< Bitangent vectors
247 UV, ///< Texture coordinates
248 COLOR, ///< Color data (RGB/RGBA)
249 DEPTH, ///< Distance from the observation point (depth, disparity, range)
250 INDEX, ///< Index buffer data
251 MIP_LEVEL, ///< Mipmap levels
252 CUSTOM ///< User-defined or application-specific
253 };
@ FREQUENCY
Spectral/frequency axis.
@ TIME
Temporal progression (samples, frames, steps)
@ CUSTOM
User-defined or application-specific.
@ POSITION
Vertex positions (3D space)
@ DEPTH
Distance from the observation point (depth, disparity, range)
@ CHANNEL
Parallel streams (audio channels, color channels)
@ SPATIAL_X
Spatial X axis (images, tensors)