MayaFlux 0.3.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 32 of file NDData.cpp.

33{
34 Role r = [axis]() {
35 switch (axis) {
36 case 'x':
37 return Role::SPATIAL_X;
38 case 'y':
39 return Role::SPATIAL_Y;
40 case 'z':
41 default:
42 return Role::SPATIAL_Z;
43 }
44 }();
45
46 if (name == "") {
47 name = std::string("spatial_") + axis;
48 }
49 return { name, size, stride, r };
50}
Role
Semantic role of the dimension.
Definition NDData.hpp:146
@ SPATIAL_X
Spatial X axis (images, tensors)
uint64_t stride
Memory stride (elements between consecutive indices)
Definition NDData.hpp:190
std::string name
Human-readable identifier for the dimension.
Definition NDData.hpp:188
uint64_t size
Number of elements in this dimension.
Definition NDData.hpp:189

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: