From 40244dd06565732a758a4c43de799f95fd84739c Mon Sep 17 00:00:00 2001 From: Alexandre Gobbo Date: Fri, 16 Aug 2019 11:56:54 +0200 Subject: [PATCH] Startup --- script/cpython/image_functions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/cpython/image_functions.py b/script/cpython/image_functions.py index bfc2ba4..e1c21f2 100644 --- a/script/cpython/image_functions.py +++ b/script/cpython/image_functions.py @@ -12,7 +12,7 @@ def img_get_int(fname, thres1, thres2, thres3, thres4, header, width, height, d thresh2_count = len(numpy.where(img>thres2)[0]) thresh3_count = len(numpy.where(img>thres3)[0]) thresh4_count = len(numpy.where(img>thres4)[0]) - #time.sleep(1.0) + time.sleep(1.0) # background roi I_sum_bgr = img[by1:by2, bx1:bx2].sum() area_bgr= (bx2 - bx1 + 1) * (by2 - by1 + 1)