Zhang, Lilian, and Reinhard Koch. "An efficient and
robust line segment matching approach based on LBD descriptor and
pairwise geometric consistency." Journal of Visual Communication and
Image Representation 24.7 (2013): 794-805.↩︎
Wang, Zhiheng, Fuchao Wu, and Zhanyi Hu. "MSLD: A robust
descriptor for line matching." Pattern Recognition 42.5 (2009):
941-953.↩︎
Von Gioi, Rafael Grompone, et al. "LSD: a line segment
detector." Image Processing On Line 2 (2012): 35-55.↩︎
Akinlar, Cuneyt, and Cihan Topal. "EDLines: A real-time
line segment detector with a false detection control." Pattern
Recognition Letters 32.13 (2011): 1633-1642.↩︎
A parallel implementation of EDLine algorithm which based on the
Line Segment Detector module of opencv_contrib.
Compared to the original version, the parallel one results in a almost
50% time reduction on PC with 4 cores CPU.
test
Requirements
The code is tested on Ubuntu 14.04. It requires the following tools
and libraries: CMake, OpenCV 3.4.
Building
1 2 3 4 5 6 7
#!bash git clone https://github.com/HanjieLuo/EDLine_parallel.git cd EDLine_parallel mkdir build cd build cmake .. make