Skip to content

Commit

Permalink
[FIX] Fixed vpCircleHoughTransform::detect(const vpImage<uchar> &, co…
Browse files Browse the repository at this point in the history
…nst int &) : returned the wrong vector
  • Loading branch information
rlagneau committed Oct 12, 2023
1 parent 99f0f75 commit 732b096
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/imgproc/src/vpCircleHoughTransform.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ vpCircleHoughTransform::detect(const vpImage<unsigned char> &I, const int &nbCir
}
}

return m_finalCircles;
return bestCircles;
}

std::vector<vpImageCircle>
Expand Down

0 comments on commit 732b096

Please sign in to comment.