正如标题所说,我试图使用Scipy包在Python中旋转图像。 我收到一个具有特定大小的图像作为输入,例如512 x 512,我必须对其进行一些旋转并裁剪掉一部分。 所以,到目前为止,这是我的代码:
for i in range(0, 90, 10):
image_base = Dt.Data(open_image=True, rotation=i)
Dv.DataVisualization.plot_data(image_base, '../Visualizations/ProcessedImages/'+str(i))
def plot_data(data, file_path):
"""
Plot the data
:param data : the data to be plotted
:param file_path : the name of the file
"""
output = Image.fromarray(numpy.uint8(data.data * 255))
output.save(file_path + '.png', 'PNG')
class Data(object):
def __init__(self, open_image=False, rotation=None):
"""
The Data constructor
"""
self.data = misc.imread('../TestImages/board.jpg', flatten=True)
self.data /= 255.0
x, y = self.data.shape
if rotation != 0:
self.data = ndimage.rotate(self.data, rotation, reshape=False)
self.data = self.data[x / 4: - x / 4, y / 4: - y / 4]
这是我的原始图像(256x256):
这些是我得到的一些输出(128x128):
正如你所看到的,边缘非常糟糕,这是我不得不接受的。我想知道为什么会发生这种情况,如果有办法摆脱它。
提前谢谢。
答案 0 :(得分:1)
好的,我能够使用参数
来解决这个问题订单:int,可选
样条插值的顺序,默认为3.顺序必须在0-5范围内。
感谢您的时间。 (: