Description
Right now we are having this situation:
Before the analysis:
project_root/
│
├── image.zarr/
After the analysis
project_root/
│
├── image.zarr/
│ ├── labels/
├── blurred_image.zarr/
@BioinfoTongLI is this correct? Maybe not entirely, because the blurred_image
may go to a different output_dir
?!
Since both the labels and the blurred image are a result of the analysis, from a data management point of view, it does feel weird to me that the labels are an in-place modification of the input image while the blurred image is outside.
I admit however that it is very convenient to have the labels with the image for later visual inspection. One may argue that the blurred image is just some non-interesting intermediate. In fact, probably one would not even save it in real life (and we just did that here for practicing)?!
@joshmoore What is your take on this? I think you said only storing labels in a separate container is possible?
@krokicki What would be your preferred best practice here?
@tibuch Your opinion?