直接通过python矩阵操作变换,简单高效
org_img = cv2.imread('cat.jpg') img = org_img[:, :, ::-1]
其中,[::-1] 表示顺序相反操作 ,如下面操作:
a=[1,2,3,4,5] b=a[::-1]
输出:[5, 4, 3, 2, 1]