line_detector icon indicating copy to clipboard operation
line_detector copied to clipboard

line segment detector(lsd) &. edge drawing line detector(edl) &. hough line detector(standard &. probabilistic) for detection

Results 6 line_detector issues
Sort by recently updated
recently updated
newest added

input image: ![3](https://user-images.githubusercontent.com/22810349/96693669-17daeb80-13ba-11eb-88ac-017600c1caa5.jpeg) my code: int w = img.cols; int h = img.rows; boundingbox_t bbox = { 0,0,w,h }; float scaleX = 0.8; float scaleY = 0.8; std::vector lines; cv::Point2f...

This is my code: ``` `void main() { Mat image; image = imread("1.png"); Mat gray_image; cvtColor(image, gray_image, CV_BGR2GRAY); int W = image.rows; int H = image.cols; int image_size = W*...

When I use the following image as input, the algorithm meets with a memory error in function int EDLineDetector::EDline(image_int8u_p image, LineChains &lines, bool smoothed) It seems to be a memory...

Dear sir, I am trying to use opencv c++ to implement paper title "Edge Drawing – A Combined Real-Time Edge/Edge Segment Detector" but I still can not make it done...