File size: 7,435 Bytes
b67f297
91867af
b67f297
 
 
12319ae
 
b67f297
 
a10a7fc
b67f297
 
 
 
 
 
91867af
 
 
b67f297
 
 
 
 
 
 
 
 
d170477
91867af
 
 
 
 
 
 
 
 
a58327a
91867af
b67f297
 
 
d170477
 
 
 
 
 
 
 
 
 
 
b67f297
 
 
 
 
 
 
 
 
 
 
 
 
 
 
91867af
b67f297
 
 
 
d170477
 
 
 
 
 
 
 
91867af
12319ae
 
b67f297
91867af
 
 
 
b67f297
 
 
a10a7fc
 
 
 
 
 
 
 
 
91867af
 
 
a10a7fc
 
 
d170477
91867af
 
a10a7fc
 
 
 
 
 
91867af
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
a10a7fc
91867af
a10a7fc
 
 
 
d170477
91867af
a10a7fc
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
91867af
 
d170477
 
 
91867af
a10a7fc
91867af
 
 
 
 
 
 
a10a7fc
 
91867af
 
 
 
 
 
a10a7fc
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
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
import os
from typing import List, Optional, Tuple
import pandas as pd
from skimage import io

import numpy as np

import torch
from pytorch_lightning import LightningDataModule
from torch.utils.data import DataLoader, Dataset, random_split
from torchvision.transforms import transforms


class FocusDataSet(Dataset):
    """Dataset for z-stacked images of neglected tropical diseaeses."""

    def __init__(
        self, csv_file, root_dir, transform=None, in_memory=True, additional_col_list=[]
    ):
        """Initialize focus satck dataset.

        Args:
            csv_file (string): Path to the csv file with annotations.
            root_dir (string): Directory with all the images.
            transform (callable, optional): Optional transform to be applied
                on a sample.
        """
        self.metadata = pd.read_csv(csv_file)
        self.in_memory = in_memory

        self.additional_col_index = {}

        _col_list = list(additional_col_list)  # clone list to avoid modifying default
        for attribute in _col_list:
            self.additional_col_index[attribute] = self.metadata.columns.get_loc(
                attribute
            )

        self.col_index_path = self.metadata.columns.get_loc("image_path")
        self.col_index_focus = self.metadata.columns.get_loc("focus_height")
        self.root_dir = root_dir
        self.transform = transform

        self.images = []
        if self.in_memory:
            self.images = np.array(
                list(map(self._load_img, self.metadata["image_path"].tolist()))
            )

    def _load_img(self, img_path):
        path = os.path.join(self.root_dir, img_path)
        img = io.imread(path)
        return img

    def __len__(self) -> int:
        """Get the length of the dataset.

        Returns:
            int: the length
        """
        return len(self.metadata)

    def __getitem__(self, idx):
        """Get one items from the dataset.

        Args:
            idx (int) The index of the sample that is to be retrieved

        Returns:
            Item/Items which is a dictionary containing "image" and "focus_height"
        """
        if torch.is_tensor(idx):
            idx = idx.tolist()

        if self.in_memory:
            image = self.images[idx]
        else:
            image = self._load_img(self.metadata.iloc[idx, self.col_index_path])

        if self.transform:
            image = self.transform(image)

        focus_height = torch.from_numpy(
            np.asarray(self.metadata.iloc[idx, self.col_index_focus])
        ).float()

        sample = {"image": image, "focus_height": focus_height}

        for attr, col_idx in self.additional_col_index.items():
            sample[attr] = self.metadata.iloc[idx, col_idx]

        return sample


class FocusDataModule(LightningDataModule):
    """
    LightningDataModule for FocusStack dataset.
    """

    def __init__(
        self,
        data_dir: str = "data/",
        csv_train_file: str = "data/train_metadata.csv",
        csv_val_file: str = "data/validation_metadata.csv",
        csv_test_file: str = "data/test_metadata.csv",
        batch_size: int = 64,
        num_workers: int = 0,
        pin_memory: bool = False,
        in_memory: bool = True,
        augmentation: bool = False,
        additional_col_list: List[str] = [],
    ):
        super().__init__()

        # this line allows to access init params with 'self.hparams' attribute
        self.save_hyperparameters(logger=False)

        transform_list = [
            transforms.ToTensor(),
            transforms.ConvertImageDtype(torch.float),
        ]

        self.base_transforms = []
        self.base_transforms.extend(transform_list)
        self.base_transforms = transforms.Compose(self.base_transforms)

        if augmentation:
            transform_list.extend(
                [
                    transforms.RandomHorizontalFlip(p=0.5),
                    transforms.RandomVerticalFlip(p=0.5),
                    transforms.RandomChoice(
                        [
                            transforms.RandomApply(
                                [transforms.RandomRotation((90, 90))], p=0.5
                            ),
                            transforms.RandomApply(
                                [transforms.RandomRotation((180, 180))], p=0.5
                            ),
                            transforms.RandomApply(
                                [transforms.RandomRotation((270, 270))], p=0.5
                            ),
                        ]
                    ),
                ]
            )

        # data transformations
        self.transforms = transforms.Compose(transform_list)

        self.data_train: Optional[Dataset] = None
        self.data_val: Optional[Dataset] = None
        self.data_test: Optional[Dataset] = None
        self.in_memory = in_memory
        self.additional_col_list = additional_col_list

    def prepare_data(self):
        """This method is not implemented as of yet.

        Download data if needed. This method is called only from a single GPU.
        Do not use it to assign state (self.x = y).
        """
        pass

    def setup(self, stage: Optional[str] = None):
        """Load data. Set variables: `self.data_train`, `self.data_val`, `self.data_test`.
        This method is called by lightning twice for `trainer.fit()` and `trainer.test()`, so be careful if you do a random split!
        The `stage` can be used to differentiate whether it's called before trainer.fit()` or `trainer.test()`."""

        # load datasets only if they're not loaded already
        if not self.data_train and not self.data_val and not self.data_test:
            self.data_train = FocusDataSet(
                self.hparams.csv_train_file,
                self.hparams.data_dir,
                transform=self.transforms,
                in_memory=self.in_memory,
                additional_col_list=self.additional_col_list,
            )

            self.data_val = FocusDataSet(
                self.hparams.csv_val_file,
                self.hparams.data_dir,
                transform=self.base_transforms,
                in_memory=self.in_memory,
                additional_col_list=self.additional_col_list,
            )

            self.data_test = FocusDataSet(
                self.hparams.csv_test_file,
                self.hparams.data_dir,
                transform=self.base_transforms,
                in_memory=self.in_memory,
                additional_col_list=self.additional_col_list,
            )

    def train_dataloader(self):
        return DataLoader(
            dataset=self.data_train,
            batch_size=self.hparams.batch_size,
            num_workers=self.hparams.num_workers,
            pin_memory=self.hparams.pin_memory,
            shuffle=True,
        )

    def val_dataloader(self):
        return DataLoader(
            dataset=self.data_val,
            batch_size=self.hparams.batch_size,
            num_workers=self.hparams.num_workers,
            pin_memory=self.hparams.pin_memory,
            shuffle=False,
        )

    def test_dataloader(self):
        return DataLoader(
            dataset=self.data_test,
            batch_size=self.hparams.batch_size,
            num_workers=self.hparams.num_workers,
            pin_memory=self.hparams.pin_memory,
            shuffle=False,
        )