├── .gitignore ├── CMakeLists.txt ├── GCN2 ├── Network.md ├── TUM3.yaml ├── TUM3_small.yaml ├── create_voc.cc ├── gcn2_320x240.pt ├── gcn2_640x480.pt ├── gcn2_tiny_320x240.pt └── run.sh ├── README.md ├── imgs ├── gcnv2.png ├── lena.bmp ├── sp.png └── tum00.png ├── include ├── GCNextractor.h ├── SPextractor.h └── SuperPoint.h ├── model └── superpoint.pt └── src ├── GCNextractor.cc ├── SPextractor.cc ├── SuperPoint.cc └── main.cc /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode/ 2 | build/ 3 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cggos/semantic_feature_points/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /GCN2/Network.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cggos/semantic_feature_points/HEAD/GCN2/Network.md -------------------------------------------------------------------------------- /GCN2/TUM3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cggos/semantic_feature_points/HEAD/GCN2/TUM3.yaml -------------------------------------------------------------------------------- /GCN2/TUM3_small.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cggos/semantic_feature_points/HEAD/GCN2/TUM3_small.yaml -------------------------------------------------------------------------------- /GCN2/create_voc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cggos/semantic_feature_points/HEAD/GCN2/create_voc.cc -------------------------------------------------------------------------------- /GCN2/gcn2_320x240.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cggos/semantic_feature_points/HEAD/GCN2/gcn2_320x240.pt -------------------------------------------------------------------------------- /GCN2/gcn2_640x480.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cggos/semantic_feature_points/HEAD/GCN2/gcn2_640x480.pt -------------------------------------------------------------------------------- /GCN2/gcn2_tiny_320x240.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cggos/semantic_feature_points/HEAD/GCN2/gcn2_tiny_320x240.pt -------------------------------------------------------------------------------- /GCN2/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cggos/semantic_feature_points/HEAD/GCN2/run.sh -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cggos/semantic_feature_points/HEAD/README.md -------------------------------------------------------------------------------- /imgs/gcnv2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cggos/semantic_feature_points/HEAD/imgs/gcnv2.png -------------------------------------------------------------------------------- /imgs/lena.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cggos/semantic_feature_points/HEAD/imgs/lena.bmp -------------------------------------------------------------------------------- /imgs/sp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cggos/semantic_feature_points/HEAD/imgs/sp.png -------------------------------------------------------------------------------- /imgs/tum00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cggos/semantic_feature_points/HEAD/imgs/tum00.png -------------------------------------------------------------------------------- /include/GCNextractor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cggos/semantic_feature_points/HEAD/include/GCNextractor.h -------------------------------------------------------------------------------- /include/SPextractor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cggos/semantic_feature_points/HEAD/include/SPextractor.h -------------------------------------------------------------------------------- /include/SuperPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cggos/semantic_feature_points/HEAD/include/SuperPoint.h -------------------------------------------------------------------------------- /model/superpoint.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cggos/semantic_feature_points/HEAD/model/superpoint.pt -------------------------------------------------------------------------------- /src/GCNextractor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cggos/semantic_feature_points/HEAD/src/GCNextractor.cc -------------------------------------------------------------------------------- /src/SPextractor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cggos/semantic_feature_points/HEAD/src/SPextractor.cc -------------------------------------------------------------------------------- /src/SuperPoint.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cggos/semantic_feature_points/HEAD/src/SuperPoint.cc -------------------------------------------------------------------------------- /src/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cggos/semantic_feature_points/HEAD/src/main.cc --------------------------------------------------------------------------------