mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 10:36:30 +00:00
b6b6751c37
put tile size to name and set it dynamically for AI recognition
20 lines
570 B
Cython
20 lines
570 B
Cython
cdef class AIRecognitionConfig:
|
|
|
|
cdef public double frame_recognition_seconds
|
|
cdef public int frame_period_recognition
|
|
cdef public double probability_threshold
|
|
|
|
cdef public double tracking_distance_confidence
|
|
cdef public double tracking_probability_increase
|
|
cdef public double tracking_intersection_threshold
|
|
|
|
cdef public int big_image_tile_overlap_percent
|
|
cdef public int tile_size
|
|
|
|
cdef public bytes file_data
|
|
cdef public list[str] paths
|
|
cdef public int model_batch_size
|
|
|
|
@staticmethod
|
|
cdef from_msgpack(bytes data)
|