beaupreda's picture
Upload sensAI-Generic-Object-Detection with upload_repo.py
13170f7 verified
Raw
History Blame Contribute Delete
307 Bytes
import ctypes
from ctypes_enum import CtypesEnum
from .CAlgorithms import *
from .EveErrors import *
EVE_ALGORITHMS_SIZE = 20
class EveSupportedAlgorithms(ctypes.Structure):
_fields_ = [
("errorCode", ctypes.c_int),
("count", ctypes.c_uint),
("algorithms", ctypes.c_int * EVE_ALGORITHMS_SIZE),
]