Shortcuts

Source code for mmflow.datasets.pipelines.formatting

# Copyright (c) OpenMMLab. All rights reserved.
import copy
from collections.abc import Sequence
from typing import Union

import mmcv
import numpy as np
import torch
from mmcv.parallel import DataContainer as DC

from ..builder import PIPELINES


def to_tensor(
    data: Union[np.ndarray, torch.Tensor, Sequence, int,
                float]) -> torch.Tensor:
    """Convert objects of various python types to :obj:`torch.Tensor`.

    Supported types are: :class:`numpy.ndarray`, :class:`torch.Tensor`,
    :class:`Sequence`, :class:`int` and :class:`float`.

    Args:
        data (torch.Tensor | numpy.ndarray | Sequence | int | float): Data to
            be converted.
    """

    if isinstance(data, torch.Tensor):
        return data
    elif isinstance(data, np.ndarray):
        return torch.from_numpy(data)
    elif isinstance(data, Sequence) and not mmcv.is_str(data):
        return torch.tensor(data)
    elif isinstance(data, int):
        return torch.LongTensor([data])
    elif isinstance(data, float):
        return torch.FloatTensor([data])
    else:
        raise TypeError(f'type {type(data)} cannot be converted to tensor.')


[docs]@PIPELINES.register_module() class ToTensor: """Convert some results to :obj:`torch.Tensor` by given keys. Args: keys (Sequence[str]): Keys that need to be converted to Tensor. """ def __init__(self, keys: Sequence) -> None: self.keys = keys def __call__(self, results: dict) -> dict: """Call function to convert data in results to :obj:`torch.Tensor`. Args: results (dict): Result dict contains the data to convert. Returns: dict: The result dict contains the data converted to :obj:`torch.Tensor`. """ for key in self.keys: results[key] = to_tensor(results[key]) return results def __repr__(self) -> str: return self.__class__.__name__ + f'(keys={self.keys})'
[docs]@PIPELINES.register_module() class ImageToTensor: """Convert image to :obj:`torch.Tensor` by given keys. The dimension order of input image is (H, W, C). The pipeline will convert it to (C, H, W). If only 2 dimension (H, W) is given, the output would be (1, H, W). Args: keys (Sequence[str]): Key of images to be converted to Tensor. """ def __init__(self, keys: Sequence) -> None: self.keys = keys def __call__(self, results: dict) -> dict: """Call function to convert image in results to :obj:`torch.Tensor` and transpose the channel order. Args: results (dict): Result dict contains the image data to convert. Returns: dict: The result dict contains the image converted to :obj:`torch.Tensor` and transposed to (C, H, W) order. """ for key in self.keys: img = results[key] if len(img.shape) < 3: img = np.expand_dims(img, -1) results[key] = to_tensor(img.transpose(2, 0, 1)) return results def __repr__(self) -> str: return self.__class__.__name__ + f'(keys={self.keys})'
[docs]@PIPELINES.register_module() class Transpose: """Transpose some results by given keys. Args: keys (Sequence[str]): Keys of results to be transposed. order (Sequence[int]): Order of transpose. """ def __init__(self, keys: Sequence, order: Sequence) -> None: self.keys = keys self.order = order def __call__(self, results: dict) -> dict: """Call function to convert image in results to :obj:`torch.Tensor` and transpose the channel order. Args: results (dict): Result dict contains the image data to convert. Returns: dict: The result dict contains the image converted to :obj:`torch.Tensor` and transposed to (C, H, W) order. """ for key in self.keys: results[key] = results[key].transpose(self.order) return results def __repr__(self) -> str: return self.__class__.__name__ + \ f'(keys={self.keys}, order={self.order})'
[docs]@PIPELINES.register_module() class ToDataContainer: """Convert results to :obj:`mmcv.DataContainer` by given fields. Args: fields (Sequence[dict]): Each field is a dict like ``dict(key='xxx', **kwargs)``. The ``key`` in result will be converted to :obj:`mmcv.DataContainer` with ``**kwargs``. Default: ``(dict(key='img1', stack=True), dict(key='img2', stack=True), dict(key='flow_gt'))``. """ def __init__( self, fields: Sequence = (dict(key='img1', stack=True), dict(key='img2', stack=True), dict(key='flow_gt')) ) -> None: self.fields = fields def __call__(self, results: dict) -> dict: """Call function to convert data in results to :obj:`mmcv.DataContainer`. Args: results (dict): Result dict contains the data to convert. Returns: dict: The result dict contains the data converted to :obj:`mmcv.DataContainer`. """ for field in self.fields: field = field.copy() key = field.pop('key') results[key] = DC(results[key], **field) return results def __repr__(self) -> str: return self.__class__.__name__ + f'(fields={self.fields})'
[docs]@PIPELINES.register_module() class DefaultFormatBundle: """Default formatting bundle. It simplifies the pipeline of formatting common fields, including "img" and "flow_gt". These fields are formatted as follows. - img1: (1)transpose, (2)to tensor, (3)to DataContainer (stack=True) - img2: (1)transpose, (2)to tensor, (3)to DataContainer (stack=True) - flow_gt: (1)transpose, (2)to tensor, (3)to DataContainer (stack=True) """ def __call__(self, results: dict) -> dict: """Call function to transform and format common fields in results. Args: results (dict): Result dict contains the data to convert. Returns: dict: The result dict contains the data that is formatted with default bundle. """ if 'img1' in results: img1 = results['img1'] img1 = np.expand_dims(img1, -1) if len(img1.shape) < 3 else img1 img1 = img1.transpose(2, 0, 1) if 'img2' in results: img2 = results['img2'] img2 = np.expand_dims(img2, -1) if len(img2.shape) < 3 else img2 img2 = img2.transpose(2, 0, 1) results['imgs'] = DC( to_tensor(np.concatenate((img1, img2), axis=0)), stack=True) if 'ann_fields' in results: ann_fields = copy.deepcopy(results['ann_fields']) for ann_key in ann_fields: if ann_key in results: gt = results[ann_key] gt = np.expand_dims(gt, -1) if len(gt.shape) < 3 else gt gt = np.ascontiguousarray(gt.transpose(2, 0, 1)) results[ann_key] = DC( to_tensor(gt.astype(np.float32)), stack=True) return results def __repr__(self) -> str: return self.__class__.__name__
[docs]@PIPELINES.register_module() class TestFormatBundle: """Default formatting bundle. It simplifies the pipeline of formatting common fields, including "img1" and "img2". These fields are formatted as follows. - img1: (1)transpose, (2)to tensor, (3)to DataContainer (stack=True) - img2: (1)transpose, (2)to tensor, (3)to DataContainer (stack=True) """ def __call__(self, results: dict) -> dict: """Call function to transform and format common fields in results. Args: results (dict): Result dict contains the data to convert. Returns: dict: The result dict contains the data that is formatted with default bundle. """ if 'img1' in results: img1 = results['img1'] img1 = np.expand_dims(img1, -1) if len(img1.shape) < 3 else img1 img1 = img1.transpose(2, 0, 1) if 'img2' in results: img2 = results['img2'] img2 = np.expand_dims(img2, -1) if len(img2.shape) < 3 else img2 img2 = img2.transpose(2, 0, 1) results['imgs'] = DC( to_tensor(np.concatenate((img1, img2), axis=0)), stack=True) return results def __repr__(self) -> str: return self.__class__.__name__
[docs]@PIPELINES.register_module() class Collect: """Collect data from the loader relevant to the specific task. This is usually the last stage of the data loader pipeline. Typically keys is set to some subset of "img", "flow_gt". The "img_meta" item is always populated. The contents of the "img_meta" dictionary depends on "meta_keys". By default this includes: - "img_shape": shape of the image input to the network as a tuple (h, w, c). Note that images may be zero padded on the bottom/right if the batch tensor is larger than this shape. - "scale_factor": a float indicating the preprocessing scale - "flip": a boolean indicating if image flip transform was used - "filename1": path to the image1 file - "filename2": path to the image2 file - "ori_filename1": image1 file name - "ori_filename2": image2 file name - "ori_shape": original shape of the image as a tuple (h, w, c) - "pad_shape": image shape after padding - "img_norm_cfg": a dict of normalization information: - mean - per channel mean subtraction - std - per channel std divisor - to_rgb - bool indicating if bgr was converted to rgb Args: keys (Sequence[str]): Keys of results to be collected in ``data``. meta_keys (Sequence[str], optional): Meta keys to be converted to ``mmcv.DataContainer`` and collected in ``data[img_metas]``. Default: ``('filename1', 'filename2', 'ori_filename1', 'ori_filename2', 'ori_shape', 'img_shape', 'pad_shape', 'scale_factor', 'flip', 'flip_direction', 'img_norm_cfg')`` """ def __init__( self, keys: Sequence, meta_keys: Sequence = ('filename1', 'filename2', 'ori_filename1', 'ori_filename2', 'filename_flow', 'ori_filename_flow', 'ori_shape', 'img_shape', 'pad_shape', 'scale_factor', 'flip', 'flip_direction', 'img_norm_cfg') ) -> None: self.keys = keys self.meta_keys = meta_keys def __call__(self, results: dict) -> dict: """Call function to collect keys in results. The keys in ``meta_keys`` will be converted to :obj:mmcv.DataContainer. Args: results (dict): Result dict contains the data to collect. Returns: dict: The result dict contains the following keys - keys in``self.keys`` - ``img_metas`` """ data = {} img_meta = {} for key in self.meta_keys: img_meta[key] = results[key] data['img_metas'] = DC(img_meta, cpu_only=True) for key in self.keys: data[key] = results[key] return data def __repr__(self) -> str: return self.__class__.__name__ + \ f'(keys={self.keys}, meta_keys={self.meta_keys})'
Read the Docs v: latest
Versions
latest
stable
1.x
dev-1.x
Downloads
pdf
html
epub
On Read the Docs
Project Home
Builds

Free document hosting provided by Read the Docs.