Hello,
I am using hyperslicer to visualize an image stack (3D array) and navigate through the stack. This works nicely, but I would like to set the initial position of the slider to a specific value, not just the first image in the stack.
How to do this with the hyperslicer() function? My code looks something like this:
fig = plt.figure(figsize=(9,9))
control1 = hyperslicer(array,vmin=np.min(array), vmax=np.max(array))
plt.show()