import Image
im = Image.open(<your image>)
width, height = im.size # Get dimensions
left = (width - new_width)/2
top = (height - new_height)/2
right = (width + new_width)/2
bottom = (height + new_height)/2
# Crop the center of the image
im = im.crop((left, top, right, bottom))
import Image
im = Image.open(<your image>)
width, height = im.size # Get dimensions
left = (width - new_width)/2
top = (height - new_height)/2
right = (width + new_width)/2
bottom = (height + new_height)/2
# Crop the center of the image
im = im.crop((left, top, right, bottom))
但我遇到了迪安·波斯皮西尔提到的问题 所提出的解决方案的一个潜在问题是,在所需尺寸和旧尺寸之间存在奇怪的差异的情况下,你不能在每一边都有半个像素,你必须选择一边来放置额外的像素。 Dean Pospisil的解决方案有效,我也提出了自己的计算来解决这个问题:
import Image
im = Image.open(<your image>)
width, height = im.size # Get dimensions
left = round((width - new_width)/2)
top = round((height - new_height)/2)
x_right = round(width - new_width) - left
x_bottom = round(height - new_height) - top
right = width - x_right
bottom = height - x_bottom
# Crop the center of the image
im = im.crop((left, top, right, bottom))
如果答案被接受,则要裁剪为180px x 101px的180px x 180px图像将导致裁剪为180px x 102px的图像。 根据我的计算,它将被正确地裁剪为180px x 101px
from PIL import Image
from torchvision.transforms import functional as F
crop_size = 256 # can be either an integer or a tuple of ints for (height, width) separately
img = Image.open(<path_to_your_image>)
cropped_img = F.center_crop(img, crop_size)
8条答案
按热度按时间slsn1g291#
假设您知道要裁剪到的大小(new_width X new_height):
如果您试图将一个小图像裁剪得更大,这将中断,但我将假设您不会尝试(或者您可以捕获这种情况,而不裁剪图像)。
wf82jlnq2#
所提出的解决方案的一个潜在问题是,在所需尺寸和旧尺寸之间存在奇怪的差异的情况下,你不能在每一边都有半个像素,你必须选择一边来放置额外的像素。
如果在水平方向上有一个奇数差,下面的代码将把额外的像素放在右边,如果在垂直方向上有一个奇数差,额外的像素放在底部。
hs1ihplo3#
我觉得最适合大多数应用程序的最简单的解决方案仍然缺失。公认的答案有一个像素不均匀的问题,尤其是对于ML算法,裁剪图像的像素数是至关重要的。
在下面的例子中,我想将一幅图像从中心裁剪为224/100。我不在乎像素是向左还是向右移动0.5,只要输出的图片始终是定义的尺寸。它避免了对数学的依赖。*
裁剪前的输出(代码中未显示):
之后:
图中显示了尺寸。
but5z9lq4#
这是我一直在寻找的函数:
取自another answer
quhf5bfb5#
我最初使用的是公认的答案:
但我遇到了迪安·波斯皮西尔提到的问题
所提出的解决方案的一个潜在问题是,在所需尺寸和旧尺寸之间存在奇怪的差异的情况下,你不能在每一边都有半个像素,你必须选择一边来放置额外的像素。
Dean Pospisil的解决方案有效,我也提出了自己的计算来解决这个问题:
如果答案被接受,则要裁剪为
180px x 101px
的180px x 180px
图像将导致裁剪为180px x 102px
的图像。根据我的计算,它将被正确地裁剪为
180px x 101px
j9per5c46#
裁剪中心和周围:
ckocjqey7#
可能是我迟到了这个党,但至少我在这里,我想中心作物的图像转换9:16图像到16:9人像景观
这是我使用的算法:
1.将图像分成4等份
1.放弃第1部分和第4部分
1.向左设置为0,向右设置为图像宽度
代码:
我希望这能有所帮助
isr3a4wc8#
您可以使用Torchvision's CenterCrop转换来实现此目的。
F.center_crop
与torch.Tensor
s或PIL.Image
s一起工作,并保留数据类型,即当输入为PIL.Image
时,输出也为(裁剪的)PIL.Image
。额外的好处是,如果输入图像大小小于请求的裁剪大小,上述转换将自动应用填充。