From 3b30a17e1180e8cdcff9766941f3819cf3fd755b Mon Sep 17 00:00:00 2001 From: Oleksandr Bezdieniezhnykh Date: Mon, 30 Mar 2026 02:59:09 +0300 Subject: [PATCH] Update TILE_DUPLICATE_CONFIDENCE_THRESHOLD declaration in constants_inf.pyx to ensure proper type casting to double --- constants_inf.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/constants_inf.pyx b/constants_inf.pyx index 5c21258..2743a91 100644 --- a/constants_inf.pyx +++ b/constants_inf.pyx @@ -14,7 +14,7 @@ cdef str MODELS_FOLDER = "models" cdef int SMALL_SIZE_KB = 3 cdef str SPLIT_SUFFIX = "!split!" -cdef double TILE_DUPLICATE_CONFIDENCE_THRESHOLD = 0.01 +cdef double TILE_DUPLICATE_CONFIDENCE_THRESHOLD = 0.01 cdef int METERS_IN_TILE = 25 cdef class AnnotationClass: