class point
{
public:
	int x,y;
	int r, g, b;
	int h,s,v;
	int certainty;

	bool operator < (point &rhs)
	{
		if ( (this->x + this->y) < (rhs.x + rhs.y) )
			return true;
		else
			return false;
	}



};