├── .gitignore ├── Pipfile ├── README.md ├── dataloader.py ├── dataset ├── __init__.py ├── magic-point_shapes.json ├── magic-point_shapes.yaml ├── migrate.py ├── sample_synthetic_data.py ├── samples │ └── sample.png ├── synthetic_dataset.py ├── synthetic_shape.py ├── test.csv ├── training.csv └── validation.csv ├── models ├── classic_detector.py ├── config.py ├── dataset.py ├── eval.py ├── eval_ap.py ├── gen_coco_label.py ├── homography.py ├── homography_heatmap.py ├── homography_result │ ├── nh1.png │ ├── nh10.png │ └── nh100.png ├── log.py ├── magic_point.py ├── shi.png ├── test.py └── utils.py ├── notebook ├── homography.ipynb ├── magic_point_compare_to_traditional_method.ipynb ├── main.ipynb ├── torch_transform.ipynb ├── val.ipynb └── visulize_magicpoint.ipynb ├── opts.py ├── requirements.txt ├── train.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luo3300612/mySuperPoint/HEAD/.gitignore -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luo3300612/mySuperPoint/HEAD/Pipfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luo3300612/mySuperPoint/HEAD/README.md -------------------------------------------------------------------------------- /dataloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luo3300612/mySuperPoint/HEAD/dataloader.py -------------------------------------------------------------------------------- /dataset/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luo3300612/mySuperPoint/HEAD/dataset/__init__.py -------------------------------------------------------------------------------- /dataset/magic-point_shapes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luo3300612/mySuperPoint/HEAD/dataset/magic-point_shapes.json -------------------------------------------------------------------------------- /dataset/magic-point_shapes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luo3300612/mySuperPoint/HEAD/dataset/magic-point_shapes.yaml -------------------------------------------------------------------------------- /dataset/migrate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luo3300612/mySuperPoint/HEAD/dataset/migrate.py -------------------------------------------------------------------------------- /dataset/sample_synthetic_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luo3300612/mySuperPoint/HEAD/dataset/sample_synthetic_data.py -------------------------------------------------------------------------------- /dataset/samples/sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luo3300612/mySuperPoint/HEAD/dataset/samples/sample.png -------------------------------------------------------------------------------- /dataset/synthetic_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luo3300612/mySuperPoint/HEAD/dataset/synthetic_dataset.py -------------------------------------------------------------------------------- /dataset/synthetic_shape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luo3300612/mySuperPoint/HEAD/dataset/synthetic_shape.py -------------------------------------------------------------------------------- /dataset/test.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luo3300612/mySuperPoint/HEAD/dataset/test.csv -------------------------------------------------------------------------------- /dataset/training.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luo3300612/mySuperPoint/HEAD/dataset/training.csv -------------------------------------------------------------------------------- /dataset/validation.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luo3300612/mySuperPoint/HEAD/dataset/validation.csv -------------------------------------------------------------------------------- /models/classic_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luo3300612/mySuperPoint/HEAD/models/classic_detector.py -------------------------------------------------------------------------------- /models/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luo3300612/mySuperPoint/HEAD/models/config.py -------------------------------------------------------------------------------- /models/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luo3300612/mySuperPoint/HEAD/models/dataset.py -------------------------------------------------------------------------------- /models/eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luo3300612/mySuperPoint/HEAD/models/eval.py -------------------------------------------------------------------------------- /models/eval_ap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luo3300612/mySuperPoint/HEAD/models/eval_ap.py -------------------------------------------------------------------------------- /models/gen_coco_label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luo3300612/mySuperPoint/HEAD/models/gen_coco_label.py -------------------------------------------------------------------------------- /models/homography.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luo3300612/mySuperPoint/HEAD/models/homography.py -------------------------------------------------------------------------------- /models/homography_heatmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luo3300612/mySuperPoint/HEAD/models/homography_heatmap.py -------------------------------------------------------------------------------- /models/homography_result/nh1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luo3300612/mySuperPoint/HEAD/models/homography_result/nh1.png -------------------------------------------------------------------------------- /models/homography_result/nh10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luo3300612/mySuperPoint/HEAD/models/homography_result/nh10.png -------------------------------------------------------------------------------- /models/homography_result/nh100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luo3300612/mySuperPoint/HEAD/models/homography_result/nh100.png -------------------------------------------------------------------------------- /models/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luo3300612/mySuperPoint/HEAD/models/log.py -------------------------------------------------------------------------------- /models/magic_point.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luo3300612/mySuperPoint/HEAD/models/magic_point.py -------------------------------------------------------------------------------- /models/shi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luo3300612/mySuperPoint/HEAD/models/shi.png -------------------------------------------------------------------------------- /models/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luo3300612/mySuperPoint/HEAD/models/test.py -------------------------------------------------------------------------------- /models/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luo3300612/mySuperPoint/HEAD/models/utils.py -------------------------------------------------------------------------------- /notebook/homography.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luo3300612/mySuperPoint/HEAD/notebook/homography.ipynb -------------------------------------------------------------------------------- /notebook/magic_point_compare_to_traditional_method.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luo3300612/mySuperPoint/HEAD/notebook/magic_point_compare_to_traditional_method.ipynb -------------------------------------------------------------------------------- /notebook/main.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luo3300612/mySuperPoint/HEAD/notebook/main.ipynb -------------------------------------------------------------------------------- /notebook/torch_transform.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luo3300612/mySuperPoint/HEAD/notebook/torch_transform.ipynb -------------------------------------------------------------------------------- /notebook/val.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luo3300612/mySuperPoint/HEAD/notebook/val.ipynb -------------------------------------------------------------------------------- /notebook/visulize_magicpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luo3300612/mySuperPoint/HEAD/notebook/visulize_magicpoint.ipynb -------------------------------------------------------------------------------- /opts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luo3300612/mySuperPoint/HEAD/opts.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | opencv-python -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luo3300612/mySuperPoint/HEAD/train.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luo3300612/mySuperPoint/HEAD/utils.py --------------------------------------------------------------------------------