mirror of
https://github.com/azaion/detections.git
synced 2026-04-26 15:06:31 +00:00
22 lines
631 B
Cython
22 lines
631 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 model_batch_size
|
|
|
|
cdef public bint has_altitude
|
|
cdef public double altitude
|
|
cdef public double focal_length
|
|
cdef public double sensor_width
|
|
|
|
@staticmethod
|
|
cdef AIRecognitionConfig from_dict(dict data)
|