HoughCircle
Description
Aggregates detected circle with its score.Structure fields and default values (if defined) are described below:
struct HoughCircle
{
Circle2D Circle;
Point2D Center;
Real Score;
Circle2D Circle() const { return Circle; };
Point2D Center() const { return Center; };
Real Score() const { return Score; };
bool operator == ( const avl::HoughCircle& rhs ) const
{
return Circle == rhs.Circle &&
Center == rhs.Center &&
Score == rhs.Score;
}
bool operator != ( const avl::HoughCircle& rhs ) const
{
return !(operator==(rhs));
}
};
