OpenCV: image[:,:,::-1], image[:, ::-1, :]
作者:XD / 发表: 2023年1月12日 00:02 / 更新: 2023年1月12日 00:05 / 编程笔记 / 阅读量:898
OpenCV: image[:,:,::-1], image[:, ::-1, :], image[::-1, :, :]
image[:,:,::-1] # change channels, RGB to BGR, BGR to RGB
image[:, ::-1, :] # move columns, horizontal flip, left to right, right to left
image[::-1, :, :] # switch rows, vertical flip, up to down, down to up