KittiFlow¶
- class torchvision.datasets.KittiFlow(root: Union[str, Path], split: str = 'train', transforms: Optional[Callable] = None)[source]¶
KITTI 光流数据集 (2015)。
数据集预计具有以下结构
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
并返回转换后版本的函数/变换。
- 特殊成员: