darts_postprocessing¶
Postprocessing steps for the DARTS dataset.
Functions:
-
binarize
–Binarize the probabilities based on a threshold and a mask.
-
erode_mask
–Erode the mask, also set the edges to invalid.
-
prepare_export
–Prepare the export, e.g. binarizes the data and convert the float probabilities to uint8.
Attributes:
binarize
¶
binarize(
probs: xarray.DataArray,
threshold: float,
min_object_size: int,
mask: xarray.DataArray,
device: typing.Literal["cuda", "cpu"] | int,
) -> xarray.DataArray
Binarize the probabilities based on a threshold and a mask.
Steps for binarization
- Dilate the mask. This will dilate the edges of holes in the mask as well as the edges of the tile.
- Binarize the probabilities based on the threshold.
- Remove objects at which overlap with either the edge of the tile or the noData mask.
- Remove small objects.
Parameters:
-
probs
(xarray.DataArray
) –Probabilities to binarize.
-
threshold
(float
) –Threshold to binarize the probabilities.
-
min_object_size
(int
) –Minimum object size to keep.
-
mask
(xarray.DataArray
) –Mask to apply to the binarized probabilities. Expects 0=negative, 1=postitive.
-
device
(typing.Literal['cuda', 'cpu'] | int
) –The device to use for removing small objects.
Returns:
Source code in darts-postprocessing/src/darts_postprocessing/postprocess.py
erode_mask
¶
erode_mask(
mask: xarray.DataArray,
size: int,
device: typing.Literal["cuda", "cpu"] | int,
) -> xarray.DataArray
Erode the mask, also set the edges to invalid.
Parameters:
-
mask
(xarray.DataArray
) –The mask to erode.
-
size
(int
) –The size of the disk to use for erosion and the edge-cropping.
-
device
(typing.Literal['cuda', 'cpu'] | int
) –The device to use for erosion.
Returns:
Source code in darts-postprocessing/src/darts_postprocessing/postprocess.py
prepare_export
¶
prepare_export(
tile: xarray.Dataset,
bin_threshold: float = 0.5,
mask_erosion_size: int = 10,
min_object_size: int = 32,
quality_level: int
| typing.Literal[
"high_quality", "low_quality", "none"
] = 0,
ensemble_subsets: list[str] = [],
device: typing.Literal["cuda", "cpu"]
| int = darts_postprocessing.postprocess.DEFAULT_DEVICE,
) -> xarray.Dataset
Prepare the export, e.g. binarizes the data and convert the float probabilities to uint8.
Parameters:
-
tile
(xarray.Dataset
) –Input tile from inference and / or an ensemble.
-
bin_threshold
(float
, default:0.5
) –The threshold to binarize the probabilities. Defaults to 0.5.
-
mask_erosion_size
(int
, default:10
) –The size of the disk to use for mask erosion and the edge-cropping. Defaults to 10.
-
min_object_size
(int
, default:32
) –The minimum object size to keep in pixel. Defaults to 32.
-
quality_level
(int | str
, default:0
) –The quality level to use for the mask. If a string maps to int. high_quality -> 2, low_quality=1, none=0 (apply no masking). Defaults to 0.
-
ensemble_subsets
(list[str]
, default:[]
) –The ensemble subsets to use for the binarization. Defaults to [].
-
device
(typing.Literal['cuda', 'cpu'] | int
, default:darts_postprocessing.postprocess.DEFAULT_DEVICE
) –The device to use for dilation. Defaults to "cuda" if cuda for cucim is available, else "cpu".
Returns:
Source code in darts-postprocessing/src/darts_postprocessing/postprocess.py
152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 |
|