mirror of
https://github.com/azaion/detections.git
synced 2026-04-22 21:06:32 +00:00
fix some cython code
This commit is contained in:
+3
-1
@@ -3,7 +3,8 @@ cdef class Detection:
|
||||
cdef public str annotation_name
|
||||
cdef public int cls
|
||||
|
||||
cdef public overlaps(self, Detection det2, float confidence_threshold)
|
||||
def __init__(self, double x, double y, double w, double h, int cls, double confidence): ...
|
||||
cdef bint overlaps(self, Detection det2, float confidence_threshold)
|
||||
|
||||
cdef class Annotation:
|
||||
cdef public str name
|
||||
@@ -12,4 +13,5 @@ cdef class Annotation:
|
||||
cdef public list[Detection] detections
|
||||
cdef public bytes image
|
||||
|
||||
def __init__(self, str name, str original_media_name, long ms, list[Detection] detections): ...
|
||||
cdef bytes serialize(self)
|
||||
|
||||
Reference in New Issue
Block a user