Skip to content

Instantly share code, notes, and snippets.

@vardanagarwal
Created February 10, 2020 20:59
Show Gist options
  • Save vardanagarwal/b03efe8e02a9ba36e3ef88311895fdd0 to your computer and use it in GitHub Desktop.
Save vardanagarwal/b03efe8e02a9ba36e3ef88311895fdd0 to your computer and use it in GitHub Desktop.
import cv2
img = cv2.imread('Paris.jpg')
res = cv2.bitwise_not(img)
cv2.imshow('original', img)
cv2.imshow('img', res)
cv2.waitKey(0)
cv2.destroyAllWindows()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment