├── .gitignore ├── CMakeLists.txt ├── Demo_LBD_Multi.cpp ├── Demo_LBD_single.cpp ├── EDLineDetector.cpp ├── EDLineDetector.hh ├── LineDescriptor.cpp ├── LineDescriptor.hh ├── LineMatchingAlgorithm.hpp ├── LineStructure.hh ├── PairwiseLineMatching.cpp ├── PairwiseLineMatching.hh ├── README.md ├── image ├── LBDSG.png ├── LinesInImage1.png ├── LinesInImage2.png ├── pic1.png └── pic2.png └── test.hpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuefeng-cvr/LBD_and_LineMatching/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuefeng-cvr/LBD_and_LineMatching/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Demo_LBD_Multi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuefeng-cvr/LBD_and_LineMatching/HEAD/Demo_LBD_Multi.cpp -------------------------------------------------------------------------------- /Demo_LBD_single.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuefeng-cvr/LBD_and_LineMatching/HEAD/Demo_LBD_single.cpp -------------------------------------------------------------------------------- /EDLineDetector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuefeng-cvr/LBD_and_LineMatching/HEAD/EDLineDetector.cpp -------------------------------------------------------------------------------- /EDLineDetector.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuefeng-cvr/LBD_and_LineMatching/HEAD/EDLineDetector.hh -------------------------------------------------------------------------------- /LineDescriptor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuefeng-cvr/LBD_and_LineMatching/HEAD/LineDescriptor.cpp -------------------------------------------------------------------------------- /LineDescriptor.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuefeng-cvr/LBD_and_LineMatching/HEAD/LineDescriptor.hh -------------------------------------------------------------------------------- /LineMatchingAlgorithm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuefeng-cvr/LBD_and_LineMatching/HEAD/LineMatchingAlgorithm.hpp -------------------------------------------------------------------------------- /LineStructure.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuefeng-cvr/LBD_and_LineMatching/HEAD/LineStructure.hh -------------------------------------------------------------------------------- /PairwiseLineMatching.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuefeng-cvr/LBD_and_LineMatching/HEAD/PairwiseLineMatching.cpp -------------------------------------------------------------------------------- /PairwiseLineMatching.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuefeng-cvr/LBD_and_LineMatching/HEAD/PairwiseLineMatching.hh -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuefeng-cvr/LBD_and_LineMatching/HEAD/README.md -------------------------------------------------------------------------------- /image/LBDSG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuefeng-cvr/LBD_and_LineMatching/HEAD/image/LBDSG.png -------------------------------------------------------------------------------- /image/LinesInImage1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuefeng-cvr/LBD_and_LineMatching/HEAD/image/LinesInImage1.png -------------------------------------------------------------------------------- /image/LinesInImage2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuefeng-cvr/LBD_and_LineMatching/HEAD/image/LinesInImage2.png -------------------------------------------------------------------------------- /image/pic1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuefeng-cvr/LBD_and_LineMatching/HEAD/image/pic1.png -------------------------------------------------------------------------------- /image/pic2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuefeng-cvr/LBD_and_LineMatching/HEAD/image/pic2.png -------------------------------------------------------------------------------- /test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuefeng-cvr/LBD_and_LineMatching/HEAD/test.hpp --------------------------------------------------------------------------------