From 79d942c1b484efb97d07206ef5d2045736c7300e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Pautrat?= Date: Mon, 30 Oct 2023 17:16:59 +0100 Subject: [PATCH] Update link to undistorted ETH3D --- gluefactory/datasets/eth3d.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gluefactory/datasets/eth3d.py b/gluefactory/datasets/eth3d.py index c99485d5..44fd73f8 100644 --- a/gluefactory/datasets/eth3d.py +++ b/gluefactory/datasets/eth3d.py @@ -194,7 +194,7 @@ def download_eth3d(self): if tmp_dir.exists(): shutil.rmtree(tmp_dir) tmp_dir.mkdir(exist_ok=True, parents=True) - url_base = "https://cvg-data.inf.ethz.ch/SOLD2_ETH3D_undistorted/" + url_base = "https://cvg-data.inf.ethz.ch/SOLD2/SOLD2_ETH3D_undistorted/" zip_name = "ETH3D_undistorted.zip" zip_path = tmp_dir / zip_name torch.hub.download_url_to_file(url_base + zip_name, zip_path)