PIL rotate image colors (BGR -> RGB)

后端 未结 11 2195
深忆病人
深忆病人 2020-11-29 21:21

I have an image where the colors are BGR. How can I transform my PIL image to swap the B and R elements of each pixel in an efficient manner?

11条回答
  •  谎友^
    谎友^ (楼主)
    2020-11-29 22:17

    import cv2
    srcBGR = cv2.imread("sample.png")
    destRGB = cv2.cvtColor(srcBGR,cv2.COLOR_BGR2RGB)
    

    Just to clarify Martin Beckets solution, as I am unable to comment. You need cv2. in front of the color constant.

提交回复
热议问题