conversion of logPolar in newer C++ API
As part of some software I am building I am translating an old Python interface to the new C++ interface. It contains a line of code like this
cv.LogPolar(image,imgRes,c,60.0, cv.CV_INTER_LINEAR+cv.CV_WARP_FILL_OUTLIERS)
But that function seems to be gone completely and I do not seem to be able to find an alternative. Basically I want an image unwrapping from the center from polar to cartesian coordinates which could be achieved by the above functionality.
Anyone got a clue?