From 9995f168d0bbc5abe297dd9ea0c47dbd47fa2fe3 Mon Sep 17 00:00:00 2001 From: gac-x04sa Date: Tue, 26 Feb 2019 15:00:54 +0100 Subject: [PATCH] Closedown --- config/settings.properties | 2 +- script/cpython/image_functions.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/config/settings.properties b/config/settings.properties index 7c13791..02b14ce 100644 --- a/config/settings.properties +++ b/config/settings.properties @@ -1,4 +1,4 @@ -#Tue Feb 26 14:59:17 CET 2019 +#Tue Feb 26 14:59:23 CET 2019 count_time=1.0 geometry=fourcv roi=190 45 290 125 diff --git a/script/cpython/image_functions.py b/script/cpython/image_functions.py index 3859b67..68861fc 100644 --- a/script/cpython/image_functions.py +++ b/script/cpython/image_functions.py @@ -3,7 +3,7 @@ import numpy def img_get_int(fname, thres1, thres2, thres3, thres4, header, width, height, depth, x1,y1,x2,y2, bx1,by1,bx2,by2 ): # read actual image file img = numpy.fromfile(fname, dtype=numpy.uint32) - print len(img), height, width + print (str(len(img)) + " - " + str(height) + " x " + str( width)) img.shape = height, width # signal roi area_I = ( x2 - x1 + 1) * ( y2 - y1 + 1)