Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 python 并且为了读取图像,我正在使用以下方法
scipy.misc.imread
我想知道关于轴的颜色顺序是什么,是它RGB or BGR还是其他顺序?
RGB or BGR
谢谢
它是 RGB 但只是为了证明它(您可以轻松地自己做),首先我使用诸如纯色(R = 75,G = 125,B = 255)的photoshop之类的绘画工具创建图像:
现在使用以下代码段检查它:
>>> from scipy.misc import imread >>> img = imread("foo.jpg") >>> img[0,0,:] [ 75 125 255]