-
Notifications
You must be signed in to change notification settings - Fork 7
[napari-workflows] Access parameters within napari-workflow? #158
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
Comments
If this is about #152, I think that's mostly out-of-scope for Fractal. The user should provide pipelines with correct settings for the resolution levels they want to run things at. We can't know which parameters would need to be scaled when. If it's about changing other parameters, I'm happy to have the discussion whether those should be modified within Fractal or whether that should be done outside of Fractal :) |
TL;DR The def regionprops(
image_layer : napari.layers.Layer,
labels_layer: napari.layers.Labels,
size : bool = True,
intensity : bool = True,
perimeter : bool = False,
shape : bool = False,
position : bool = False,
moments : bool = False,
napari_viewer : Viewer = None): On one example (I don't have a reproducible script at hand, but I can recreate it if is useful) running on 3D data and with all arguments set to At first (and this is the reason for the current issue) I thought that the problem was that perimeter measurement is not allowed for 3D images. Then I realized that the napari-workflows function linked above actually raises a warning about that, and then skips this property. Therefore the large memory usage should have come from some other property ( |
Ok, makes sense, thanks for the context! :) They work well on 2D examples, but some may not make sense for 3D measurements :) |
placeholder, I'll update later (e.g. True,True,True,True, in measurement for 3D)
The text was updated successfully, but these errors were encountered: