Gap1D

Description

Represents gaps found by 1D Edge Detection functions.

Structure fields and default values (if defined) are described below:

struct Gap1D
{
	Point2D	Point1;
	Point2D	Point2;
	float	Width;


	Point2D Point1( void ) const	{ return Point1;	};
	Point2D Point2( void ) const	{ return Point2;	};
	float Width( void ) const		{ return Width;		};

	bool operator == ( const avl::Gap1D& rhs ) const
	{
		return Point1 == rhs.Point1 && 
			Point2 == rhs.Point2 && 
			Width == rhs.Width;
	}

	bool operator != ( const avl::Gap1D& rhs ) const
	{
		return !(operator==(rhs));
	}

};