From cc785a6e1169f23619ca651ce3d1f621b6a49053 Mon Sep 17 00:00:00 2001 From: gac-x04sa Date: Tue, 30 Oct 2018 18:20:52 +0100 Subject: [PATCH] Script execution --- script/cpython/wrapper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/cpython/wrapper.py b/script/cpython/wrapper.py index b195593..17c52ff 100644 --- a/script/cpython/wrapper.py +++ b/script/cpython/wrapper.py @@ -10,7 +10,7 @@ def img_get_int(fname, thres1, thres2, thres3, thres4, header, width, height, de def img_read(fname, header, width, height, depth): ret = call_jep("cpython/image_functions", "img_read", [fname, header, width, height, depth]) - return ret + return Convert.reshape(ret.data, height, width)