imgproc: don't call .unlock() on non-holded mutex in houghCircles()

pull/11262/head
Alexander Alekhin 7 years ago
parent 23d866ad40
commit 15837b43ca
  1. 2
      modules/imgproc/src/hough.cpp

@ -1329,7 +1329,7 @@ public:
CV_Assert(nzSz > 0);
}
~HoughCircleEstimateRadiusInvoker() {_lock.unlock();}
~HoughCircleEstimateRadiusInvoker() {}
protected:
inline int filterCircles(const Point2f& curCenter, float* ddata) const;

Loading…
Cancel
Save