transform.py 11.5 KB
Newer Older
1
2
import math
import torch
eellison's avatar
eellison committed
3
from torch import nn, Tensor
4
from torch.nn import functional as F
5
import torchvision
6
from typing import List, Tuple, Dict, Optional
7
8
9
10
11

from .image_list import ImageList
from .roi_heads import paste_masks_in_image


12
13
14
15
16
17
18
@torch.jit.unused
def _resize_image_and_masks_onnx(image, self_min_size, self_max_size, target):
    # type: (Tensor, float, float, Optional[Dict[str, Tensor]]) -> Tuple[Tensor, Optional[Dict[str, Tensor]]]
    from torch.onnx import operators
    im_shape = operators.shape_as_tensor(image)[-2:]
    min_size = torch.min(im_shape).to(dtype=torch.float32)
    max_size = torch.max(im_shape).to(dtype=torch.float32)
19
    scale_factor = torch.min(self_min_size / min_size, self_max_size / max_size)
20
21

    image = torch.nn.functional.interpolate(
22
        image[None], scale_factor=scale_factor, mode='bilinear', recompute_scale_factor=True,
23
24
25
26
27
28
29
        align_corners=False)[0]

    if target is None:
        return image, target

    if "masks" in target:
        mask = target["masks"]
30
        mask = F.interpolate(mask[:, None].float(), scale_factor=scale_factor, recompute_scale_factor=True)[:, 0].byte()
31
32
33
34
35
36
37
38
39
40
41
42
43
        target["masks"] = mask
    return image, target


def _resize_image_and_masks(image, self_min_size, self_max_size, target):
    # type: (Tensor, float, float, Optional[Dict[str, Tensor]]) -> Tuple[Tensor, Optional[Dict[str, Tensor]]]
    im_shape = torch.tensor(image.shape[-2:])
    min_size = float(torch.min(im_shape))
    max_size = float(torch.max(im_shape))
    scale_factor = self_min_size / min_size
    if max_size * scale_factor > self_max_size:
        scale_factor = self_max_size / max_size
    image = torch.nn.functional.interpolate(
44
        image[None], scale_factor=scale_factor, mode='bilinear', recompute_scale_factor=True,
45
46
47
48
49
50
51
        align_corners=False)[0]

    if target is None:
        return image, target

    if "masks" in target:
        mask = target["masks"]
52
        mask = F.interpolate(mask[:, None].float(), scale_factor=scale_factor, recompute_scale_factor=True)[:, 0].byte()
53
54
55
56
        target["masks"] = mask
    return image, target


57
class GeneralizedRCNNTransform(nn.Module):
58
59
60
61
62
63
64
65
66
67
68
    """
    Performs input / target transformation before feeding the data to a GeneralizedRCNN
    model.

    The transformations it perform are:
        - input normalization (mean subtraction and std division)
        - input / target resizing to match min_size / max_size

    It returns a ImageList for the inputs, and a List[Dict[Tensor]] for the targets
    """

69
70
    def __init__(self, min_size, max_size, image_mean, image_std):
        super(GeneralizedRCNNTransform, self).__init__()
71
72
73
74
        if not isinstance(min_size, (list, tuple)):
            min_size = (min_size,)
        self.min_size = min_size
        self.max_size = max_size
75
76
77
        self.image_mean = image_mean
        self.image_std = image_std

78
79
80
81
82
    def forward(self,
                images,       # type: List[Tensor]
                targets=None  # type: Optional[List[Dict[str, Tensor]]]
                ):
        # type: (...) -> Tuple[ImageList, Optional[List[Dict[str, Tensor]]]]
83
        images = [img for img in images]
84
85
86
        if targets is not None:
            # make a copy of targets to avoid modifying it in-place
            # once torchscript supports dict comprehension
urmi22's avatar
urmi22 committed
87
            # this can be simplified as follows
88
89
90
91
92
93
94
95
            # targets = [{k: v for k,v in t.items()} for t in targets]
            targets_copy: List[Dict[str, Tensor]] = []
            for t in targets:
                data: Dict[str, Tensor] = {}
                for k, v in t.items():
                    data[k] = v
                targets_copy.append(data)
            targets = targets_copy
96
97
        for i in range(len(images)):
            image = images[i]
eellison's avatar
eellison committed
98
99
            target_index = targets[i] if targets is not None else None

100
101
102
103
            if image.dim() != 3:
                raise ValueError("images is expected to be a list of 3d tensors "
                                 "of shape [C, H, W], got {}".format(image.shape))
            image = self.normalize(image)
eellison's avatar
eellison committed
104
            image, target_index = self.resize(image, target_index)
105
            images[i] = image
eellison's avatar
eellison committed
106
107
            if targets is not None and target_index is not None:
                targets[i] = target_index
108

109
110
        image_sizes = [img.shape[-2:] for img in images]
        images = self.batch_images(images)
111
        image_sizes_list: List[Tuple[int, int]] = []
eellison's avatar
eellison committed
112
113
114
115
116
        for image_size in image_sizes:
            assert len(image_size) == 2
            image_sizes_list.append((image_size[0], image_size[1]))

        image_list = ImageList(images, image_sizes_list)
117
118
119
        return image_list, targets

    def normalize(self, image):
120
121
122
123
124
        if not image.is_floating_point():
            raise TypeError(
                f"Expected input images to be of floating type (in range [0, 1]), "
                f"but found type {image.dtype} instead"
            )
125
126
127
128
129
        dtype, device = image.dtype, image.device
        mean = torch.as_tensor(self.image_mean, dtype=dtype, device=device)
        std = torch.as_tensor(self.image_std, dtype=dtype, device=device)
        return (image - mean[:, None, None]) / std[:, None, None]

Francisco Massa's avatar
Francisco Massa committed
130
    def torch_choice(self, k):
131
        # type: (List[int]) -> int
eellison's avatar
eellison committed
132
133
134
135
136
        """
        Implements `random.choice` via torch ops so it can be compiled with
        TorchScript. Remove if https://github.com/pytorch/pytorch/issues/25803
        is fixed.
        """
Francisco Massa's avatar
Francisco Massa committed
137
138
        index = int(torch.empty(1).uniform_(0., float(len(k))).item())
        return k[index]
eellison's avatar
eellison committed
139

140
    def resize(self, image, target):
141
        # type: (Tensor, Optional[Dict[str, Tensor]]) -> Tuple[Tensor, Optional[Dict[str, Tensor]]]
142
        h, w = image.shape[-2:]
143
        if self.training:
eellison's avatar
eellison committed
144
            size = float(self.torch_choice(self.min_size))
145
146
        else:
            # FIXME assume for now that testing uses the largest scale
eellison's avatar
eellison committed
147
            size = float(self.min_size[-1])
148
149
150
151
        if torchvision._is_tracing():
            image, target = _resize_image_and_masks_onnx(image, size, float(self.max_size), target)
        else:
            image, target = _resize_image_and_masks(image, size, float(self.max_size), target)
152
153
154
155
156
157
158
159
160
161
162
163
164
165

        if target is None:
            return image, target

        bbox = target["boxes"]
        bbox = resize_boxes(bbox, (h, w), image.shape[-2:])
        target["boxes"] = bbox

        if "keypoints" in target:
            keypoints = target["keypoints"]
            keypoints = resize_keypoints(keypoints, (h, w), image.shape[-2:])
            target["keypoints"] = keypoints
        return image, target

166
167
    # _onnx_batch_images() is an implementation of
    # batch_images() that is supported by ONNX tracing.
eellison's avatar
eellison committed
168
    @torch.jit.unused
169
    def _onnx_batch_images(self, images, size_divisible=32):
eellison's avatar
eellison committed
170
        # type: (List[Tensor], int) -> Tensor
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
        max_size = []
        for i in range(images[0].dim()):
            max_size_i = torch.max(torch.stack([img.shape[i] for img in images]).to(torch.float32)).to(torch.int64)
            max_size.append(max_size_i)
        stride = size_divisible
        max_size[1] = (torch.ceil((max_size[1].to(torch.float32)) / stride) * stride).to(torch.int64)
        max_size[2] = (torch.ceil((max_size[2].to(torch.float32)) / stride) * stride).to(torch.int64)
        max_size = tuple(max_size)

        # work around for
        # pad_img[: img.shape[0], : img.shape[1], : img.shape[2]].copy_(img)
        # which is not yet supported in onnx
        padded_imgs = []
        for img in images:
            padding = [(s1 - s2) for s1, s2 in zip(max_size, tuple(img.shape))]
186
            padded_img = torch.nn.functional.pad(img, (0, padding[2], 0, padding[1], 0, padding[0]))
187
188
189
190
            padded_imgs.append(padded_img)

        return torch.stack(padded_imgs)

eellison's avatar
eellison committed
191
192
193
194
195
196
197
198
    def max_by_axis(self, the_list):
        # type: (List[List[int]]) -> List[int]
        maxes = the_list[0]
        for sublist in the_list[1:]:
            for index, item in enumerate(sublist):
                maxes[index] = max(maxes[index], item)
        return maxes

199
    def batch_images(self, images, size_divisible=32):
200
        # type: (List[Tensor], int) -> Tensor
201
202
203
204
        if torchvision._is_tracing():
            # batch_images() does not export well to ONNX
            # call _onnx_batch_images() instead
            return self._onnx_batch_images(images, size_divisible)
205

eellison's avatar
eellison committed
206
207
        max_size = self.max_by_axis([list(img.shape) for img in images])
        stride = float(size_divisible)
208
        max_size = list(max_size)
209
210
        max_size[1] = int(math.ceil(float(max_size[1]) / stride) * stride)
        max_size[2] = int(math.ceil(float(max_size[2]) / stride) * stride)
211

eellison's avatar
eellison committed
212
213
        batch_shape = [len(images)] + max_size
        batched_imgs = images[0].new_full(batch_shape, 0)
214
215
216
217
218
        for img, pad_img in zip(images, batched_imgs):
            pad_img[: img.shape[0], : img.shape[1], : img.shape[2]].copy_(img)

        return batched_imgs

219
220
221
222
223
224
    def postprocess(self,
                    result,               # type: List[Dict[str, Tensor]]
                    image_shapes,         # type: List[Tuple[int, int]]
                    original_image_sizes  # type: List[Tuple[int, int]]
                    ):
        # type: (...) -> List[Dict[str, Tensor]]
225
226
227
228
229
230
        if self.training:
            return result
        for i, (pred, im_s, o_im_s) in enumerate(zip(result, image_shapes, original_image_sizes)):
            boxes = pred["boxes"]
            boxes = resize_boxes(boxes, im_s, o_im_s)
            result[i]["boxes"] = boxes
231
232
            if "masks" in pred:
                masks = pred["masks"]
233
                masks = paste_masks_in_image(masks, boxes, o_im_s)
234
                result[i]["masks"] = masks
235
236
237
238
239
240
            if "keypoints" in pred:
                keypoints = pred["keypoints"]
                keypoints = resize_keypoints(keypoints, im_s, o_im_s)
                result[i]["keypoints"] = keypoints
        return result

241
242
243
244
245
246
247
248
249
    def __repr__(self):
        format_string = self.__class__.__name__ + '('
        _indent = '\n    '
        format_string += "{0}Normalize(mean={1}, std={2})".format(_indent, self.image_mean, self.image_std)
        format_string += "{0}Resize(min_size={1}, max_size={2}, mode='bilinear')".format(_indent, self.min_size,
                                                                                         self.max_size)
        format_string += '\n)'
        return format_string

250
251

def resize_keypoints(keypoints, original_size, new_size):
252
    # type: (Tensor, List[int], List[int]) -> Tensor
253
254
255
256
257
    ratios = [
        torch.tensor(s, dtype=torch.float32, device=keypoints.device) /
        torch.tensor(s_orig, dtype=torch.float32, device=keypoints.device)
        for s, s_orig in zip(new_size, original_size)
    ]
258
259
    ratio_h, ratio_w = ratios
    resized_data = keypoints.clone()
260
261
262
263
264
265
266
    if torch._C._get_tracing_state():
        resized_data_0 = resized_data[:, :, 0] * ratio_w
        resized_data_1 = resized_data[:, :, 1] * ratio_h
        resized_data = torch.stack((resized_data_0, resized_data_1, resized_data[:, :, 2]), dim=2)
    else:
        resized_data[..., 0] *= ratio_w
        resized_data[..., 1] *= ratio_h
267
268
269
270
    return resized_data


def resize_boxes(boxes, original_size, new_size):
271
    # type: (Tensor, List[int], List[int]) -> Tensor
272
273
274
275
276
    ratios = [
        torch.tensor(s, dtype=torch.float32, device=boxes.device) /
        torch.tensor(s_orig, dtype=torch.float32, device=boxes.device)
        for s, s_orig in zip(new_size, original_size)
    ]
277
278
    ratio_height, ratio_width = ratios
    xmin, ymin, xmax, ymax = boxes.unbind(1)
279

280
281
282
283
284
    xmin = xmin * ratio_width
    xmax = xmax * ratio_width
    ymin = ymin * ratio_height
    ymax = ymax * ratio_height
    return torch.stack((xmin, ymin, xmax, ymax), dim=1)