├── .gitignore ├── LICENSE ├── README.md ├── main.py ├── modules ├── extractors │ └── SIFTExtractor.py ├── matchers │ └── BFMatcher.py └── utils │ ├── DecodeUtil.py │ ├── DownloadUtil.py │ ├── FeatureFileUtil.py │ ├── GeoUtil.py │ ├── GridClusterUtil.py │ └── PreviewUtil.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UESTC-Ingress/IFSolver/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UESTC-Ingress/IFSolver/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UESTC-Ingress/IFSolver/HEAD/README.md -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UESTC-Ingress/IFSolver/HEAD/main.py -------------------------------------------------------------------------------- /modules/extractors/SIFTExtractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UESTC-Ingress/IFSolver/HEAD/modules/extractors/SIFTExtractor.py -------------------------------------------------------------------------------- /modules/matchers/BFMatcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UESTC-Ingress/IFSolver/HEAD/modules/matchers/BFMatcher.py -------------------------------------------------------------------------------- /modules/utils/DecodeUtil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UESTC-Ingress/IFSolver/HEAD/modules/utils/DecodeUtil.py -------------------------------------------------------------------------------- /modules/utils/DownloadUtil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UESTC-Ingress/IFSolver/HEAD/modules/utils/DownloadUtil.py -------------------------------------------------------------------------------- /modules/utils/FeatureFileUtil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UESTC-Ingress/IFSolver/HEAD/modules/utils/FeatureFileUtil.py -------------------------------------------------------------------------------- /modules/utils/GeoUtil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UESTC-Ingress/IFSolver/HEAD/modules/utils/GeoUtil.py -------------------------------------------------------------------------------- /modules/utils/GridClusterUtil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UESTC-Ingress/IFSolver/HEAD/modules/utils/GridClusterUtil.py -------------------------------------------------------------------------------- /modules/utils/PreviewUtil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UESTC-Ingress/IFSolver/HEAD/modules/utils/PreviewUtil.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UESTC-Ingress/IFSolver/HEAD/requirements.txt --------------------------------------------------------------------------------