segmentation
SegmentationDataset(image_paths, mask_paths, batch_size=None, object_masks=None, resize=224, mask_preprocess=None, labels=None, transform=None, mask_smoothing=False, defect_transform=None)
¶
Bases: Dataset
Custom SegmentationDataset class for loading images and masks.
Parameters:
-
image_paths
(
List[str]
) –List of paths to images.
-
mask_paths
(
List[str]
) –List of paths to masks.
-
batch_size
(
Optional[int]
, default:None
) –Batch size.
-
object_masks
(
Optional[List[Union[ndarray, Any]]]
, default:None
) –List of paths to object masks.
-
resize
(
int
, default:224
) –Resize image to this size.
-
mask_preprocess
(
Optional[Callable]
, default:None
) –Preprocess mask.
-
labels
(
Optional[List[str]]
, default:None
) –List of labels.
-
transform
(
Optional[Compose]
, default:None
) –Transformations to apply to images and masks.
-
mask_smoothing
(
bool
, default:False
) –Smooth mask.
-
defect_transform
(
Optional[Compose]
, default:None
) –Transformations to apply to images and masks for defects.
Source code in quadra/datasets/segmentation.py
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 |
|
SegmentationDatasetMulticlass(image_paths, mask_paths, idx_to_class, batch_size=None, transform=None, one_hot=False)
¶
Bases: Dataset
Custom SegmentationDataset class for loading images and multilabel masks.
Parameters:
-
image_paths
(
List[str]
) –List of paths to images.
-
mask_paths
(
List[str]
) –List of paths to masks.
-
idx_to_class
(
Dict
) –dict with corrispondence btw mask index and classes: {1: class_1, 2: class_2, ..., N: class_N}
-
batch_size
(
Optional[int]
, default:None
) –Batch size.
-
transform
(
Optional[Compose]
, default:None
) –Transformations to apply to images and masks.
-
one_hot
(
bool
, default:False
) –if True return a binary mask (n_classxHxW), otherwise the labelled mask HxW. SMP loss requires the second format.
Source code in quadra/datasets/segmentation.py
152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 |
|
__getitem__(index)
¶
Get image and mask.
Source code in quadra/datasets/segmentation.py
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 228 229 230 |
|
__len__()
¶
Returns the dataset lenght.
Source code in quadra/datasets/segmentation.py
232 233 234 235 236 237 |
|