-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
enable slicing stacks in arbitrary dimensions #81
enable slicing stacks in arbitrary dimensions #81
Conversation
I hijacked the I have no preference whether it is passed as tuple, list or (maybe?) dict. Whatever yo prefer... |
Oh wait. It might not even be necessary to propagate it all the way up to |
OK, it is necessary to change things here due to the type checks. |
Hi @constantinpape , I thought about looking into the tests and found out that so far, IO functionality is tested both here as well as in |
Hi @martinschorb , This approach has the downside that it duplicates the functionality already implemented by I think there is a way how you can achieve this in |
OK, great. I was not fully aware of the exact logic in So, do I get it right that the idea would be to present a single stack as |
Yes, exactly. |
Would the best place to implement this then be the |
So you would need to add it with some other parameter name to avoid overloading the meaning of
You can go ahead and create a new one. (The |
Hi, this should enable extracting only sub-dimensional parts of stacks. (-> single channels of multi-channel stacks for MoBIE etc...)
I have not checked how it can be tested yet, but the actual slicing happens in
cluster_tools
, so it might be more interesting to test there...constantinpape/cluster_tools#42