Constants

class Engine(value)

Bases: enum.Enum

Software inference engines supported by edgeIQ

DNN = 'DNN'

OpenCV’s DNN backend.

Supports:

DNN_OPENVINO = 'DNN_OPENVINO'

OpenCV’s OpenVINO Inference Engine backend.

Supports:

DNN_CUDA = 'DNN_CUDA'

OpenCV’s CUDA Inference Engine backend.

Supports:

TENSOR_RT = 'TENSOR_RT'

Tensor RT Engine

Supports:

HAILO_RT = 'HAILO_RT'

Hailo RT Engine

Supports:

class Accelerator(value)

Bases: enum.Enum

HW accelerators supported by edgeIQ

DEFAULT = 'DEFAULT'

Selects the default accelerator for the given Engine

CPU = 'CPU'

Run the Engine on the CPU

GPU = 'GPU'

Run the Engine on the GPU.

MYRIAD = 'MYRIAD'

Run the Engine on a MYRIAD accelerator (NCS2)

NVIDIA = 'NVIDIA'

Run the Engine on a NVIDIA gpu accelerator

NVIDIA_FP16 = 'NVIDIA_FP16'

Run the Engine on a NVIDIA gpu accelerator compressed to floating point 16

HAILO = 'HAILO'

Run the Engine on a HAILO accelerator

class SupportedDevices(value)

Bases: enum.Enum

Devices supported by edgeIQ

EYECLOUD = 'eyecloud'
OAK = 'oak'
NANO = 'nano'
XAVIER_NX = 'xavier-nx'
AGX_XAVIER = 'agx-xavier'