I am sending the center parameter given by (2953,1999) as I show below:
circle(imgOr,(2953,1999),224,Scalar(255,0,0));
But it gives the error:
could not convert (0,1999) from 'int' to 'cv :: Point'
I am sending the center parameter given by (2953,1999) as I show below:
circle(imgOr,(2953,1999),224,Scalar(255,0,0));
But it gives the error:
could not convert (0,1999) from 'int' to 'cv :: Point'
Try this:
circle(imgOr,Point(2953,1999),224,Scalar(255,0,0));
Just be careful that this circle does not cross the edges of the image