(self)
| 92 | return image, mask, original_shape, name |
| 93 | |
| 94 | def __len__(self): |
| 95 | return self.size |
| 96 | |
| 97 | def get_loader(image_root, gt_root, batchsize, trainsize, shuffle=False, num_workers=4, pin_memory=True, augmentation=False, split='train', color_image=True): |
| 98 | dataset = PolypDataset(image_root, gt_root, trainsize, augmentation, split, color_image) |
nothing calls this directly
no outgoing calls
no test coverage detected