Skip to content

Instantly share code, notes, and snippets.

@victormurcia
Created October 20, 2022 14:39
Show Gist options
  • Select an option

  • Save victormurcia/5f0252209fab4bddb3d8a194f91aeeb6 to your computer and use it in GitHub Desktop.

Select an option

Save victormurcia/5f0252209fab4bddb3d8a194f91aeeb6 to your computer and use it in GitHub Desktop.
changing color spaces
gray_img = cv2.cvtColor(rgb_img, cv2.COLOR_RGB2GRAY)
bgr_img = cv2.cvtColor(rgb_img, cv2.COLOR_RGB2BGR)
hsv_img = cv2.cvtColor(rgb_img, cv2.COLOR_RGB2HSV)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment