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

◆ spatial()

DataDimension MayaFlux::Kakshya::DataDimension::spatial ( uint64_t  size,
char  axis,
uint64_t  stride = 1,
std::string  name = "spatial" 
)
static

Convenience constructor for a spatial dimension.

Parameters
sizeNumber of elements along this axis
axisAxis character ('x', 'y', or 'z')
strideMemory stride (default: 1)
nameOptional name (default: "pixels")
Returns
DataDimension representing a spatial axis

Definition at line 65 of file NDData.cpp.

66{
67 Role r = [axis]() {
68 switch (axis) {
69 case 'x':
70 return Role::SPATIAL_X;
71 case 'y':
72 return Role::SPATIAL_Y;
73 case 'z':
74 default:
75 return Role::SPATIAL_Z;
76 }
77 }();
78
79 if (name == "") {
80 name = std::string("spatial_") + axis;
81 }
82 return { name, size, stride, r };
83}
Role
Semantic role of the dimension.
Definition NDData.hpp:236
@ SPATIAL_X
Spatial X axis (images, tensors)
uint64_t stride
Memory stride (elements between consecutive indices)
Definition NDData.hpp:299
std::string name
Human-readable identifier for the dimension.
Definition NDData.hpp:297
uint64_t size
Number of elements in this dimension.
Definition NDData.hpp:298

References name, size, SPATIAL_X, SPATIAL_Y, SPATIAL_Z, and stride.

Referenced by create_dimensions(), MayaFlux::Kakshya::detect_data_dimensions(), MayaFlux::Kakshya::detect_data_dimensions(), MayaFlux::Yantra::infer_from_eigen(), spatial_1d(), spatial_2d(), and spatial_3d().

+ Here is the caller graph for this function: