Skip to content

Commit

Permalink
Merge pull request #8 from rainyl/fix_cv_minEnclosingCircle
Browse files Browse the repository at this point in the history
fix cv_minEnclosingCircle
  • Loading branch information
rainyl authored Nov 3, 2024
2 parents 13b077f + 9671ca8 commit d3335ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dartcv/imgproc/imgproc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -388,7 +388,7 @@ CvStatus* cv_minEnclosingCircle(
float r;
auto _points = vecpoint_c2cpp(pts);
cv::minEnclosingCircle(_points, c, r);
*center = {c.y, c.x};
*center = {c.x, c.y};
*radius = r;
if (callback != nullptr) {
callback();
Expand Down

0 comments on commit d3335ea

Please sign in to comment.