PolarSpaceType

Description

Image transformation space.

Decides which formula use to transform image. Parameters \(m\) and \(k\) are set to values which allow to fit source image in output image.

Values of this enumeration:

  • Polar - Uses following equation: \[ \rho = m \sqrt{x^2 + y^2} , \phi = \arctan(\frac{y}{x}) \]
  • LogPolar - Uses following equation: \[ \rho = k \log{\sqrt{x^2+y^2} }, \phi = \arctan(\frac{y}{x}) \]

namespace PolarSpaceType
{
	enum Type
	{
		Polar,
		LogPolar
	};
}