--- license: cc-by-sa-4.0 tags: - visual-place-recognition - robotics - season-change - place-recognition size_categories: - 10K_idx` and `winter_idx`, which are zero-based indices into the corresponding image folder sorted lexicographically by filename. ## Loading example ```python import pandas as pd from PIL import Image import os df = pd.read_parquet("matchings/summer2015_winter_matchings.parquet") summer_imgs = sorted(os.listdir("summer2015_icra_dataset/")) winter_imgs = sorted(os.listdir("winter_icra_dataset/")) query = Image.open(f"summer2015_icra_dataset/{summer_imgs[df.iloc[0]['summer2015_idx']]}") match = Image.open(f"winter_icra_dataset/{winter_imgs[df.iloc[0]['winter_idx']]}") ``` ## License Released under [CC BY-SA 4.0](https://creativecommons.org/licenses/by-sa/4.0/), matching the original distribution by Naseer et al. Attribution and ShareAlike conditions apply. ## Citation Please cite these publications if you use this dataset. The papers can be found here: [Robust Visual Localization Across Seasons](https://ieeexplore.ieee.org/document/8269404) and [Robust Visual Robot Localization Across Seasons using Network Flows](https://ojs.aaai.org/index.php/AAAI/article/view/9057). ```bibtex @article{naseerRobustVisualLocalization2018, title = {Robust Visual Localization Across Seasons}, author = {Naseer, Tayyab and Burgard, Wolfram and Stachniss, Cyrill}, journal = {IEEE Transactions on Robotics}, year = {2018} } @inproceedings{naseerRobustVisualRobot2014, title = {Robust Visual Robot Localization Across Seasons using Network Flows}, author = {Naseer, Tayyab and Spinello, Luciano and Burgard, Wolfram and Stachniss, Cyrill}, booktitle = {Proceedings of the AAAI Conference on Artificial Intelligence}, address = {Quebec, Canada}, year = {2014} } ```