Skip to content

Instantly share code, notes, and snippets.

@Jojozzc
Created December 2, 2018 07:34
Show Gist options
  • Save Jojozzc/4a75cb2a2bf95b747aed9bad8bd533d4 to your computer and use it in GitHub Desktop.
Save Jojozzc/4a75cb2a2bf95b747aed9bad8bd533d4 to your computer and use it in GitHub Desktop.
Simple rgb2gray
def rgb2gray(img):
assert np.ndim(img) == 3
img = color.rgb2gray(img) * 255
img = np.uint8(img)
return img
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment