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 60 of file NDData.cpp.

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

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: