StringLabel
Description
Represents a text combined with a two-dimensional point it is anchored to, making it easier to describe image features.
Structure fields and default values (if defined) are described below:
struct StringLabel
{
String Text;
Point2D Position;
String Text() const { return Text; };
Point2D Position() const { return Position; };
bool operator == ( const avl::StringLabel& rhs ) const
{
return Text == rhs.Text &&
Position == rhs.Position;
}
bool operator != ( const avl::StringLabel& rhs ) const
{
return !(operator==(rhs));
}
};
