MATLAB File Help: cv.logPolar Index
cv.logPolar

Remaps an image to log-polar space

dst = cv.logPolar(src, center, M)
dst = cv.logPolar(..., 'OptionName',optionValue, ...)

Input

Output

Options

Transforms the source image using the following transformation:

dst(phi,rho) = src(x,y)

where:

rho = M * log(sqrt(x^2 + y^2))
phi = atan(y/x)

The function emulates the human "foveal" vision and can be used for fast scale and rotation-invariant template matching, for object tracking and so forth.

See also