KittiFlow¶
- class torchvision.datasets.KittiFlow(root: Union[str, Path], split: str = 'train', transforms: Optional[Callable] = None)[source]¶
用于光流 (2015) 的 KITTI 数据集。
预期数据集具有以下结构
root KittiFlow testing image_2 training image_2 flow_occ
- 参数:
root (str 或
pathlib.Path
) – KittiFlow 数据集的根目录。split (string, 可选) – 数据集分割,可以是“train”(默认)或“test”
transforms (callable, 可选) – 一个函数/变换,它接收
img1, img2, flow, valid_flow_mask
并返回转换后的版本。
- 特殊成员: