^..^
+0 Some errors in dataset pipeline of Tensorflow
Robin Dong 发于 2019年01月04日 15:13
| 点击: 212
| 展开摘要
To extend image datasets by using mixup,I use this snippet to mix two images:
major_image = cv2.imread('1.jpeg')
minor_image = cv2.imread('2.jpeg')
new_image = major_image * 0.9 + minor_image * 0.1
But after generating images by using this
查看全文: http://www.udpwork.com/item/17271.html
major_image = cv2.imread('1.jpeg')
minor_image = cv2.imread('2.jpeg')
new_image = major_image * 0.9 + minor_image * 0.1
But after generating images by using this
查看全文: http://www.udpwork.com/item/17271.html