Files
annotations/Azaion.AI/annotation.pxd
T
Alex Bezdieniezhnykh 62623b7123 add ramdisk, load AI model to ramdisk and start recognition from it
rewrite zmq to DEALER and ROUTER
add GET_USER command to get CurrentUser from Python
all auth is on the python side
inference run and validate annotations on python
2025-01-29 17:45:26 +02:00

11 lines
231 B
Cython

cdef class Detection:
cdef public double x, y, w, h, confidence
cdef public int cls
cdef class Annotation:
cdef bytes image
cdef long time
cdef public list[Detection] detections
cdef bytes serialize(self)