0
I am sending the center parameter given by (2953,1999) as shown below:
circle(imgOr,(2953,1999),224,Scalar(255,0,0));
But make a mistake:
could not Convert (0,1999) from 'int' to 'cv::Point'
0
I am sending the center parameter given by (2953,1999) as shown below:
circle(imgOr,(2953,1999),224,Scalar(255,0,0));
But make a mistake:
could not Convert (0,1999) from 'int' to 'cv::Point'
0
Try to use this:
circle(imgOr,Point(2953,1999),224,Scalar(255,0,0));
just take care that this circle does not exceed the edges of the image
With Point also error, I had to use Cvpoint, these points and rays, are already given in the document itself. They are images of MIAS mammograms
Browser other questions tagged opencv
You are not signed in. Login or sign up in order to post.
It worked! I used Cvpoint(2953,1999);
– Daniel Santos