What is the difference between an opencv BGR image and its reverse version RGB image[:,:,::-1]?
I’m trying to show an opencv image with a QLabel. I got two different versions of the image, first one is the opencv BGR image, the second one is the RGB image using image[:,:,::-1], the BGR version works fine but the RGB version doesn’t work.