Files
annotations/Azaion.Inference/annotation.pxd
T
2025-02-06 10:48:03 +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)