-
Notifications
You must be signed in to change notification settings - Fork 42
Open
Description
extend the config.imageseries.ImageSeriesConfig class to allow either ints or list of ints for omega:start, omega:stop, and omega:step. Lists should be all the same length, and will be zipped together to provide a list of ranges:
ranges = [range(start, stop, step) for start, stop, step in zip(ome.start, ome.stop, ome.step)]
Also, add a property that returns a list (or np array?) of omega values.
@joelvbernier, in what form are the disconnected omega ranges consumed by the library? Does it need a list of ranges, or a list of discrete omega values?