From 27ed32f8336a65f12ed2e327aa926e2214ef8bf6 Mon Sep 17 00:00:00 2001 From: StevenPuttemans Date: Fri, 19 Jul 2013 14:11:04 +0200 Subject: [PATCH] Applied bugfix #3165 : Changed min_eps value --- modules/imgproc/src/shapedescr.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/imgproc/src/shapedescr.cpp b/modules/imgproc/src/shapedescr.cpp index b1bc1babe..c6c49a14e 100644 --- a/modules/imgproc/src/shapedescr.cpp +++ b/modules/imgproc/src/shapedescr.cpp @@ -804,7 +804,7 @@ cvFitEllipse2( const CvArr* array ) CvPoint2D32f c = {0,0}; double gfp[5], rp[5], t; CvMat A, b, x; - const double min_eps = 1e-6; + const double min_eps = 1e-8; int i, is_float; CvSeqReader reader;