Skip to content

Commit 666de1b

Browse files
committed
Merge pull request opencv#5312 from sturkmen72:patch-2
2 parents 894f922 + c63f443 commit 666de1b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/imgproc/src/drawing.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1748,7 +1748,7 @@ void circle( InputOutputArray _img, Point center, int radius,
17481748
double buf[4];
17491749
scalarToRawData(color, buf, img.type(), 0);
17501750

1751-
if( thickness > 1 || line_type >= CV_AA )
1751+
if( thickness > 1 || line_type >= CV_AA || shift > 0 )
17521752
{
17531753
center.x <<= XY_SHIFT - shift;
17541754
center.y <<= XY_SHIFT - shift;

0 commit comments

Comments
 (0)