Skip to content
Snippets Groups Projects
Commit 70527801 authored by Arnaud Blanchard's avatar Arnaud Blanchard
Browse files

Fix typo

parent aa1c8d7e
Branches master
No related tags found
No related merge requests found
......@@ -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')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment