Classes | |
class | String |
Defines a string. More... | |
class | Matrix3f |
Represents a generic 3*3 matrix. More... | |
class | Matrix4f |
Represents a generic 4*4 matrix. More... | |
class | Vector2< T > |
Represents a two dimensions vector for both CPU and GPU. More... | |
class | Vector3< T > |
Represents a three dimensions vector for both CPU and GPU. More... | |
class | Vector4< T > |
Represents a four dimensions vector for both CPU and GPU. More... | |
struct | Resolution |
Width and height of an array. More... | |
class | Mat |
The Mat class can handle multiple matrix format from 1 to 4 channels, with different value types (float or uchar), and can be stored CPU and/or GPU side. More... | |
Enumerations | |
enum | MEM |
List available memory type. More... | |
enum | COPY_TYPE |
List available copy operation on Mat. More... | |
enum | MAT_TYPE |
List available Mat formats. More... | |
Functions | |
void | sleep_ms (int time) |
Tells the program to wait for x ms. More... | |
void | sleep_us (int time) |
Tells the program to wait for x us. More... | |
String | toString (const MEM &mem) |
Convert the given enumerated value into readable text. More... | |
String | toString (const COPY_TYPE &cpy) |
Convert the given enumerated value into readable text. More... | |
String | toString (const MAT_TYPE &type) |
Convert the given enumerated value into readable text. More... | |
int | getZEDSDKRuntimeVersion (int &major, int &minor, int &patch) |
[Windows only] Returns the ZED SDK version currently installed on the computer. The major, minor, patch parameters will be filled by reference. More... | |
const void | getZEDSDKBuildVersion (int &major, int &minor, int &patch) |
Returns the ZED SDK version which the current program has been compiled with. The major, minor, patch parameters will be filled by reference. More... | |
enum MEM |
enum COPY_TYPE |
List available copy operation on Mat.
Enumerator | |
---|---|
COPY_TYPE_CPU_CPU | copy data from CPU to CPU. |
COPY_TYPE_CPU_GPU | copy data from CPU to GPU. |
COPY_TYPE_GPU_GPU | copy data from GPU to GPU. |
COPY_TYPE_GPU_CPU | copy data from GPU to CPU. |
enum MAT_TYPE |
List available Mat formats.
|
inline |
Tells the program to wait for x ms.
time | : the number of ms to wait. |
|
inline |
Tells the program to wait for x us.
time | : the number of us to wait. |
Convert the given enumerated value into readable text.
Convert the given enumerated value into readable text.
Convert the given enumerated value into readable text.
|
inline |
[Windows only] Returns the ZED SDK version currently installed on the computer. The major, minor, patch parameters will be filled by reference.
|
inline |
Returns the ZED SDK version which the current program has been compiled with. The major, minor, patch parameters will be filled by reference.