【发布时间】:2019-09-04 21:26:58
【问题描述】:
我的目标是将二维功率谱(下图)从笛卡尔坐标转换为极坐标。
imshow(np.log10(psd2shift),cmap=cm.jet)
stackoverflow 上有几篇关于如何做到这一点的帖子,例如link。所以我相信我的代码是正确的。
ro,col=psd2shift.shape
cent=(int(ro/2),int(col/2))
max_radius = int(np.sqrt(ro**2+col**2)/2)
polar=cv.linearPolar(np.log10(psd2shift),cent,max_radius,cv.WARP_FILL_OUTLIERS)
plt.imshow(polar,cmap=cm.jet, interpolation='bicubic')
显然,尽管借助 linearPolar 函数或文档 here,我无法发现转换的差异。似乎中心没有正确定义,但我很确定它是。想法?
与help(cv.linearPolar)
回报:
内置函数linearPolar的帮助:
linearPolar(...)
linearPolar(src, center, maxRadius, flags[, dst]) -> dst
. @brief Remaps an image to polar coordinates space.
.
. @anchor polar_remaps_reference_image
. 
.
. Transform the source image using the following transformation:
. \f[\begin{array}{l}
. dst( \rho , \phi ) = src(x,y) \\
. dst.size() \leftarrow src.size()
. \end{array}\f]
.
. where
. \f[\begin{array}{l}
. I = (dx,dy) = (x - center.x,y - center.y) \\
. \rho = Kx \cdot \texttt{magnitude} (I) ,\\
. \phi = Ky \cdot \texttt{angle} (I)_{0..360 deg}
. \end{array}\f]
.
. and
. \f[\begin{array}{l}
. Kx = src.cols / maxRadius \\
. Ky = src.rows / 360
. \end{array}\f]
.
.
. @param src Source image
. @param dst Destination image. It will have same size and type as src.
. @param center The transformation center;
. @param maxRadius The radius of the bounding circle to transform. It determines the inverse magnitude scale parameter too.
. @param flags A combination of interpolation methods, see cv::InterpolationFlags
.
. @note
. - The function can not operate in-place.
. - To calculate magnitude and angle in degrees @ref cv::cartToPolar is used internally thus angles are measured from 0 to 360 with accuracy about 0.3 degrees.
【问题讨论】:
-
如果您包含原始图像(
psd2shift)会有所帮助。 -
我指的是实际图片,不是
plt.imshow显示的图片
标签: python numpy opencv polar-coordinates cartesian