sensAI-Generic-Object-Detection / shared /eve_python /structs /EveScreenLocationStructs.py
mgamsby-lattice's picture
Upload sensAI-Generic-Object-Detection with upload_repo.py
44a2bac verified
Raw
History Blame Contribute Delete
360 Bytes
import ctypes
from ctypes_enum import CtypesEnum
from .CScreenLocation import *
from .EveErrors import *
class EveScreenLocationOptions(ctypes.Structure):
_fields_ = [
("topLeftX", ctypes.c_float),
("topLeftY", ctypes.c_float),
]
class EveScreenLocationData(ctypes.Structure):
_fields_ = [
("data", CScreenLocation),
("error", ctypes.c_int),
]