import numpy as np
import cv2
from matplotlib import pyplot as plt
img = cv2.imread('C:\\Users\\not my user name\\Desktop\\20140505_124500_4096_HMIIC.jpg', 0)
norm_image = cv2.normalize(img, dst=None, norm_type=cv2.NORM_MINMAX, dtype=cv2.CV_32F)
plt.imshow(norm_image, cmap='afmhot', interpolation='bicubic')
plt.xticks([]), plt.yticks([])
plt.show()
我正在使用的太阳光盘:
我想知道是否有一种简单的方法可以将图像从笛卡尔转换为极坐标?
像这个例子:
或者像这个例子:
由于某种原因,我在MATLAB中找到了许多示例,但在Python中却找不到。我一直在查看this from opencv,但是由于要保持原始图像/数组的大小,我不确定是我想要的。我知道转换为极坐标会“扭曲”图像,但这很好,我主要要做的是测量从中心到边缘的太阳圆盘的强度,绘制强度与半径的函数,因此我可以测量四肢变黑。
答案 0 :(得分:6)
OpenCV具有将图像从笛卡尔形式转换为Polar的功能,反之亦然。由于您需要将图像转换为极坐标形式,因此可以采用以下方法:
代码:
import cv2
import numpy as np
source = cv2.imread('C:/Users/selwyn77/Desktop/sun.jpg', 1)
#--- ensure image is of the type float ---
img = source.astype(np.float32)
#--- the following holds the square root of the sum of squares of the image dimensions ---
#--- this is done so that the entire width/height of the original image is used to express the complete circular range of the resulting polar image ---
value = np.sqrt(((img.shape[0]/2.0)**2.0)+((img.shape[1]/2.0)**2.0))
polar_image = cv2.linearPolar(img,(img.shape[0]/2, img.shape[1]/2), value, cv2.WARP_FILL_OUTLIERS)
polar_image = polar_image.astype(np.uint8)
cv2.imshow("Polar Image", polar_image)
cv2.waitKey(0)
cv2.destroyAllWindows()
结果:
答案 1 :(得分:4)
您可以仅在终端上使用 ImageMagick 在命令行上进行极地笛卡尔畸变-它已安装在大多数Linux发行版中,并且可用于macOS和Windows:
convert sun.jpg +distort DePolar 0 result.jpg
Anthony Thyssen here有一些很棒的提示和技巧。
答案 2 :(得分:1)
scikit-image 也提供了沿着这些方向的转换。见skimage.transform.warp_polar。
注意,这确实引入了像素强度的插值。
另请参阅 polar demo 以了解用法示例。