mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 08:46:31 +00:00
11 lines
231 B
Cython
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)
|
|
|