opencv python reading image as RGB

非 Y 不嫁゛ 提交于 2020-05-14 13:42:04

问题


Is it possible to opencv (using python) as default read an image as order of RGB ? in the opencv documentation imread method return image as order of BGR but in code imread methods return the image as RGB order ? I am not doing any converting process. Just used imread methods and show on the screen. It shows as on windows image viewer. is it possible ?

EDIT 1: my code is below. left side cv.imshow() methods and the other one plt.imshow() methods.

cv2.imshow() methods shows image as RGB and plt show it as opencv read (BGR) the image.

image_file = 'image/512-2-1001-18-RGB.jpg'
# img = imp.get_image(image_file)

img = cv2.imread(image_file)
plt.imshow(img)
plt.show()

cv2.imshow('asd', img)
cv2.waitKey(0)
cv2.destroyAllWindows()

EDIT 2 : Some how opencv imshow methods is showing the image as RGB below I have attached the first pixel's value of image and next image is photoshop pixel values

EDIT 3 : below just reading image and with imshow and second image is original RGB image.

after imshow method image looks same as original image and this confused me

Original image in order of RGB.


回答1:


OpenCV is entirely consistent within itself. It reads images into Numpy arrays with the channels in BGR order, keeps the images in BGR order and its cv2.imshow() and cv2.imwrite() also expect images in BGR order. All your JPEG/PNG/BMP/TIFF files remain in their normal RGB order on disk.

Other libraries, such as PIL/Pillow, scikit-image, matplotlib, pyvips store images in conventional RGB order in memory.

So, you will only get colour issues if you mix OpenCV with any other library. If you go from/to OpenCV from any of the others, you will need to reverse the channel order. It is the same process either way, you are swapping the first and third channel:

RGBimage = BGRimage[...,::-1]

or

BGRimage = RGBimage[...,::-1]

Or, you can use OpenCV cvtColor() to do the transform:

RGBimage = cv2.cvtColor(BGRimage, cv2.COLOR_BGR2RGB)

You don't need to necessarily make a whole copy in a new variable every time. Say you read an image with OpenCV, in OpenCV BGR order obviously, and you briefly want to display it with matplotlib, you can just reverse the channels as you pass it:

# Load image with OpenCV and process in BGR order
im = cv2.imread(something)

# Briefly display with matplotlib, which will want RGB order
plt.imshow(img[...,::-1])
plt.show()

# Carry on processing in BGR order with OpenCV
...


来源:https://stackoverflow.com/questions/61500121/opencv-python-reading-image-as-rgb

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!