From 70527801a2c8ef1fb55ce7909f5fc071bccce6bc Mon Sep 17 00:00:00 2001 From: Arnaud Blanchard <arnaud.blanchard@ensea.fr> Date: Fri, 15 Oct 2021 17:37:25 +0200 Subject: [PATCH] Fix typo --- python/opencv_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/opencv_client.py b/python/opencv_client.py index 1802684..6571539 100644 --- a/python/opencv_client.py +++ b/python/opencv_client.py @@ -9,7 +9,7 @@ height = client.dims[0] width = client.dims[1] deep = client.dims[2] -print(height,"x",width,"x",deep, cleint.type, client.format) +print(height,"x",width,"x",deep, client.type, client.format) #We create an numpy array (equivalent to cv:Mat in C++ ) associated with the data of the client client_array = numpy.ndarray([height, width, deep], dtype=numpy.uint8, buffer=client.data, offset=0, strides=None, order='C') -- GitLab