Skip to content

Instantly share code, notes, and snippets.

@Nithilaa
Created October 26, 2021 05:02
Show Gist options
  • Save Nithilaa/03de809ffd16b17bc37c297eedd67680 to your computer and use it in GitHub Desktop.
Save Nithilaa/03de809ffd16b17bc37c297eedd67680 to your computer and use it in GitHub Desktop.
import cv2
img = cv2.imread('flower_image.jpg', 1)
#or
#img = cv2.imread('C:\\Users\\Admin\\Downloads\\flower_image.jpg', 1)
cv2.imshow('Coloured Image', img)
cv2.waitKey(0)
cv2.destroyAllWindows()
cv2.imwrite('colored_image.jpg',img)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment