def WACV2020(root): """WACV2020 datasets from http://openaccess.thecvf.com/WACV2020.py. WACV2020 datasets includes 527 papers. Data storage directory: root = `/user/.../mydata` WACV2020 data: `root/WACV2020/...` Args: root: str, Store the absolute path of the data directory. example:if you want data path is `/user/.../mydata/WACV2020`, root should be `/user/.../mydata`. Returns: Store the absolute path of the data directory, is `root/WACV2020`. """ start = time.time() task_path = get_paper('WACV2020', root, 'https://raw.githubusercontent.com/Hourout/datasets/master/paper/wacv/wacv2020.txt') print('WACV2020 dataset download completed, run time %d min %.2f sec' %divmod((time.time()-start), 60)) return task_path
def CVPR2021(root): """CVPR2021 datasets from https://openaccess.thecvf.com/CVPR2021. CVPR2021 datasets includes 2690 papers. Data storage directory: root = `/user/.../mydata` CVPR2021 data: `root/CVPR2021/...` Args: root: str, Store the absolute path of the data directory. example:if you want data path is `/user/.../mydata/CVPR2021`, root should be `/user/.../mydata`. Returns: Store the absolute path of the data directory, is `root/CVPR2021`. """ start = time.time() task_path = get_paper( 'CVPR2021', root, 'https://raw.githubusercontent.com/Hourout/datasets/master/paper/cvpr/cvpr2021.txt' ) print('CVPR2021 dataset download completed, run time %d min %.2f sec' % divmod((time.time() - start), 60)) return task_path
def ICCV2019(root): """ICCV2019 datasets from http://openaccess.thecvf.com/ICCV2019.py. ICCV2019 datasets includes 1619 papers. Data storage directory: root = `/user/.../mydata` ICCV2019 data: `root/ICCV2019/...` Args: root: str, Store the absolute path of the data directory. example:if you want data path is `/user/.../mydata/ICCV2019`, root should be `/user/.../mydata`. Returns: Store the absolute path of the data directory, is `root/ICCV2019`. """ start = time.time() task_path = get_paper( 'ICCV2019', root, 'https://raw.githubusercontent.com/Hourout/datasets/master/paper/ICCV/iccv2019.txt' ) print('ICCV2019 dataset download completed, run time %d min %.2f sec' % divmod((time.time() - start), 60)) return task_path