标签: image-processing
我得到了带有地标的图像数据集以进行增强。我的问题是如何正确计算翻转图像上的翻转地标?
我现在有以下三种方法,哪一种才是正确的方法?
# flip left and right # 1 x2 = width - x1 # 2 x2 = width - 1 - x1 # # 3 x2 = width - 1 - math.floor(x1) + x1 - math.floor(x1)