码迷,mamicode.com
首页 > 其他好文 > 详细

图像增强

时间:2020-01-08 16:07:33      阅读:97      评论:0      收藏:0      [点我收藏+]

标签:wait   flip   python   horizon   random   pre   key   div   box   

水平翻转(标注翻转):
def random_horizontal_flip(image, bboxes):
    _, w, _ = image.shape
    # [::-1] 顺序相反操作
    # a = [1, 2, 3, 4, 5]
    # a[::-1]
    # Out[3]: [5, 4, 3, 2, 1]
    image = image[:, ::-1, :]
    bboxes[:, [0, 2]] = w - bboxes[:, [2, 0]]
    return image, bboxes
bbox = np.array([[185,62,279,199,14]])
image = np.array(cv2.imread("000001.jpg"))
image1, bboxes = random_horizontal_flip(image.copy(), bbox.copy())
cv2.namedWindow(‘0‘,0)
cv2.imshow(‘0‘,image1)
cv2.waitKey(0)

  

图像增强

标签:wait   flip   python   horizon   random   pre   key   div   box   

原文地址:https://www.cnblogs.com/lzq116/p/12167099.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!