调整地面实况图像的大小,而无需更改标签

时间:2014-04-17 14:12:38

标签: python image image-processing python-imaging-library

我有一些手动注释的地面真实图像颜色编码一些对象。当我调整它们的大小(将X和Y作为具有较低分辨率的训练图像,即更快的处理时间)时,某些东西会改变地面实况中的标签颜色。

from PIL import Image   
  ground_truth=Image.open(//location)
  ground_truth_resized = ground_truth.resize(size, Image.ANTIALIAS)
  ground_truth_resized.save(//destination folder)

我认为antialias正在做一些改变颜色的东西(即标签) 我将从1024x768转到640x480,基本上保留了宽高比

如何降低分辨率但保留标签?

1 个答案:

答案 0 :(得分:1)

删除ANTIALIAS解决了问题