I am loading an image into python e.g.
image = cv2.imread(\"new_image.jpg\")
How can i acccess the RGB values of image?
image
You can use numpy Better convert the image into numpy array and transpose the matrix [R G B] will be [B G R] and vice versa