mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 11:26:31 +00:00
e21dd7e70f
fixes definitions can run until API call
8 lines
166 B
Cython
8 lines
166 B
Cython
cdef class Detection:
|
|
cdef double x, y, w, h
|
|
cdef int cls
|
|
|
|
cdef class Annotation:
|
|
cdef bytes image
|
|
cdef float time
|
|
cdef list[Detection] detections |