Commit 4781f0a3 authored by Vadim Pisarevsky's avatar Vadim Pisarevsky

Merge pull request #10024 from iago-suarez:bugfix-lsd-multiple-imgs-issue#10023

parents 4b827506 42d942e1
...@@ -430,6 +430,9 @@ void LineSegmentDetectorImpl::detect(InputArray _image, OutputArray _lines, ...@@ -430,6 +430,9 @@ void LineSegmentDetectorImpl::detect(InputArray _image, OutputArray _lines,
if(w_needed) Mat(w).copyTo(_width); if(w_needed) Mat(w).copyTo(_width);
if(p_needed) Mat(p).copyTo(_prec); if(p_needed) Mat(p).copyTo(_prec);
if(n_needed) Mat(n).copyTo(_nfa); if(n_needed) Mat(n).copyTo(_nfa);
// Clear used structures
list.clear();
} }
void LineSegmentDetectorImpl::flsd(std::vector<Vec4f>& lines, void LineSegmentDetectorImpl::flsd(std::vector<Vec4f>& lines,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment