Answers for "python image to grayscale opencv"

0

rgb to grayscale python opencv

import cv2
  
image = cv2.imread('C:/Users/N/Desktop/Test.jpg')
gray = cv2.cvtColor(image, cv2.COLOR_BGR2GRAY)
  
cv2.imshow('Original image',image)
cv2.imshow('Gray image', gray)
  
cv2.waitKey(0)
cv2.destroyAllWindows()
Posted by: Guest on June-13-2021
2

python image to grayscale

from PIL import Image
img = Image.open("image.jpg")
img.convert("L").save("result.jpg")
Posted by: Guest on March-18-2021

Code answers related to "python image to grayscale opencv"

Python Answers by Framework

Browse Popular Code Answers by Language