From 7c5b981c17d0308e84e8a5fe86d87c1ac43b1e2b Mon Sep 17 00:00:00 2001 From: Suleyman TURKMEN Date: Sun, 5 Jun 2016 01:06:55 +0300 Subject: [PATCH] Update drawing.cpp --- modules/imgproc/src/drawing.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/imgproc/src/drawing.cpp b/modules/imgproc/src/drawing.cpp index 4396e0a5ab..a73a30f9dc 100644 --- a/modules/imgproc/src/drawing.cpp +++ b/modules/imgproc/src/drawing.cpp @@ -1813,7 +1813,7 @@ void circle( InputOutputArray _img, Point center, int radius, double buf[4]; scalarToRawData(color, buf, img.type(), 0); - if( thickness > 1 || line_type >= CV_AA || shift > 0 ) + if( thickness > 1 || line_type != LINE_8 || shift > 0 ) { center.x <<= XY_SHIFT - shift; center.y <<= XY_SHIFT - shift;