问章来源:https://www.scivision.co/numpy-image-bgr-to-rgb/
无需
本文描述了RGB / GRB /BGR之间的转换,以及使用python读/写 音/视频的实例操作
Generally, any/all image that we get can be described by @:
@ = W e i g h t ∗ H e i g h t ∗ C h a n n e l @=Weight*Height*Channel @=Weight∗Height∗Channel
Specifically, Conversion between any/all of BGR, RGB, and GBR may be necessary when working with:
rgb = bgr[...,::-1]
bgr = rgb[...,::-1]
gbr = rgb[...,[2,0,1]]
matplot:https://www.scivision.co/tag/#matplotlib
opencv:https://www.scivision.co/tag/#opencv
Python Image and Video Read/Write Examples:https://github.com/scivision/pyimagevideo/