Home

Awesome

Feature matching with FGN

This repo contains the source code for the feature matching application (Sec. 7) in "Lifelong Graph Learning." Chen Wang, Yuheng Qiu, Dasong Gao, Sebastian Scherer. CVPR 2022.

Usage

Dependencies

Data

The TartanAir dataset is required for both training and testing. The dataset should be aranged as follows:

$DATASET_ROOT/
└── tartanair/
    ├── abandonedfactory_night/
    └── ...

Commandline

Training and evaluates the method with default setting:

$ python train.py --data-root <DATASET_ROOT> --method <FGN/GAT>

Citation

@inproceedings{wang2022lifelong,
  title={Lifelong graph learning},
  author={Wang, Chen and Qiu, Yuheng and Gao, Dasong and Scherer, Sebastian},
  booktitle={2022 Conference on Computer Vision and Pattern Recognition (CVPR)},
  year={2022}
}