projection
Task for 3D->2D maximum-intensity projection.
projection(*, zarr_url, method=DaskProjectionMethod.MIP, output_image_name=Field(default='{image_name}_{method}', pattern='^.*\\{image_name\\}.*$'), overwrite=False)
¶
Perform intensity projection along Z axis with a chosen method.
this task will write the output in a new OM-Zarr file
in the same location as the input one, with the same name plus a suffix indicating the projection method used (e.g. "_MIP" for maximum intensity projection).
| PARAMETER | DESCRIPTION |
|---|---|
zarr_url |
Path or url to the individual OME-Zarr image to be processed.
TYPE:
|
method |
Choose which method to use for intensity projection along the Z axis.
TYPE:
|
output_image_name |
The template for the output image name. To make sure that the output image is unique it must contain the placeholder {image_name}, and it can optionally contain the placeholder {method}.
TYPE:
|
overwrite |
If True, previous projected images with the same "output_image_name" will be overwritten.
TYPE:
|
Source code in fractal_tasks_core/projection.py
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 | |