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( void ) const		{ return Text;		};
	Point2D Position( void ) 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));
	}

};

See also

String