You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Cellpose expects two-channel images as input, where the first channel must be a nuclear channel (e.g. DAPI) and the second channel must be a cytoplasmic channel (e.g. E-Cadherin). The nuclear channel is optional and only the cytoplasmic channel ("channel to segment") is required. Note that - compared to the original cellpose implementation - the channel order is reversed for compatibility with DeepCell/Mesmer.
114
+
For cell segmentation, Cellpose expects maximum 3-channel images as input, where one channel should be a nuclear channel (e.g. DAPI) and the second channel should be a cytoplasmic channel (e.g. E-Cadherin), the order does not matter anymore in v4+. For nuclei segmentation, only a nuclei channel should be provided and the parameter `--diameter` has to be adjusted accordingly.
119
115
120
-
If a `cellpose` column is present in the *steinbock* panel file, channels are sorted and grouped according to values in that column to generate the required input for DeepCell: For each image, each group of channels is aggregated by computing the mean along the channel axis (use the `--aggr` option to specify a different aggregation strategy). The resulting images consist of one channel per group; channels without a group label are ignored.
116
+
If a `cellpose` column is present in the *steinbock* panel file, channels are sorted and grouped according to values in that column to generate the required input for Cellpose: For each image, each group of channels is aggregated by computing the mean along the channel axis (use the `--aggr` option to specify a different aggregation strategy). The resulting images consist of one channel per group; channels without a group label are ignored.
121
117
122
118
If no `cellpose` column is present, images are expected to be in the correct format already.
123
119
124
120
!!! note "GPU support"
125
-
Currently. steinbock does not support cellpose segmentation with GPU support.
126
-
127
-
If GPU support is required, consider running cellpose on your host system independently.
121
+
In Cellpose v4+ GPU usage is supported inherently - there is a check whether GPU devices are available, otherwise it will fall back to CPU usage.
0 commit comments