Hi Wendell
(Sorry for the late reply, apparently I was not subscribed to this thread)
The usage of
create_image_dataset() should be similar to create_dataset(). So the second argument is the name of the dataset (image) in the group. It should not yet exist, or the function will complain. The third argument is the data itself (an array or numpy array). The other arguments are optional settings (e.g., compression type) Typically I call it like this:
ids = create_image_dataset(group1, "Image", arr)
ids is the new dataset.
Best,
Éric