Skip to content

Instantly share code, notes, and snippets.

@soumya997
Created March 30, 2020 07:32
Show Gist options
  • Select an option

  • Save soumya997/ca6b49b7c7181e916cb78e6d1e526da3 to your computer and use it in GitHub Desktop.

Select an option

Save soumya997/ca6b49b7c7181e916cb78e6d1e526da3 to your computer and use it in GitHub Desktop.
hsv_img = cv2.cvtColor(X[0],cv2.COLOR_BGR2HSV)
hsv_img_1 = hsv_img.copy()
hsv_img_2 = hsv_img.copy()
hsv_img_3 = hsv_img.copy()
hsv_img_1[:,:,1] = 0#HUE --> ZERO
hsv_img_1[:,:,2] = 0
hsv_img_2[:,:,0] = 0#SATURATION --> ZERO
hsv_img_2[:,:,2] = 0
hsv_img_3[:,:,0] = 0#VALUE --> ZERO
hsv_img_3[:,:,1] = 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment