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( void ) const { return Circle; };
Point2D Center( void ) const { return Center; };
Real Score( void ) 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));
}
};
