15 lines
259 B
Python
Executable File
15 lines
259 B
Python
Executable File
width = cam_server.data.width
|
|
height = cam_server.data.height
|
|
|
|
print
|
|
|
|
print width, height
|
|
images = 4
|
|
|
|
path = "/image"
|
|
|
|
create_dataset(path, 'd', dimensions = [height, width, images])
|
|
|
|
|
|
for i in range(images):
|
|
append_dataset(path, cam_server.data.matrix) |