python Python opencv bgr2rgb

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python Python opencv bgr2rgb相关的知识,希望对你有一定的参考价值。

img_rgb = np.zeros(img_bgr.shape, img_bgr.dtype)
img_rgb[:,:,0] = img_bgr[:,:,2]
img_rgb[:,:,1] = img_bgr[:,:,1]
img_rgb[:,:,2] = img_bgr[:,:,0]

以上是关于python Python opencv bgr2rgb的主要内容,如果未能解决你的问题,请参考以下文章

opencv学习-第三节:图像色彩空间转换和保存函数

一段BGR2Y的SIMD代码解析。

python opencv安装问题?

python怎么安装opencv库

如何在mac上安装opencv与python

opencv-python