rgb to grayscale python

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()

3.75
4
Brandon B 100 points

                                    from PIL import Image
img = Image.open('image.png').convert('LA')
img.save('greyscale.png')

3.75 (4 Votes)
0
4.2
5
Blod Mary 115 points

                                    backtorgb = cv2.cvtColor(gray,cv2.COLOR_GRAY2RGB)

4.2 (5 Votes)
0
Are there any code examples left?
Create a Free Account
Unlock the power of data and AI by diving into Python, ChatGPT, SQL, Power BI, and beyond.
Sign up
Develop soft skills on BrainApps
Complete the IQ Test
Relative searches
convert grayscale to color python connvert rgb to gray in python convert rgb to grayscale python matplotlib change a rgb image to grayscale python how to add rgb image in grayscale image by python opencv cv rgb to grayscale opencv python convert to grayscale how to convert a rgb image to grayscale in python using cv2 from grayscale to rgb python convert color image to grayscale python rgb to gray python cv2 python rgb to grayscale cv2 python rgb to grayscale numpy python rgb to gray how to grayscale rgb in python how to convert rgb image into grayscale in python convert grayscale to rgb cv2 py convert to grayscale opencv to grayscale python cv2 rgb to gray opencv rgb to gray rgb to gray in python convert jpg to grayscale python convert rgb into grayscale python rgb to grayscale python tiff python convert tiff to grayscale convert grayscale to rgb color to grayscale python rgb to grayscale opencv convert rgba to grayscale python numpy grayscale to rgb python grayscale image to rgb read a rgb image as grayscale python read a rgb image to grayscale python cv2 rgb to grayscale python convert color image to grayscale rgb to gray opencv convert from rgb to grayscale python color image to grayscale python how to convert rgb to grayscale in python opencv rgb to grayscale matplotlib how to convert grayscale to rgb python imread convert to grayscale python imread from rgb to grayscale python from rgb to grayscale python imread from rgb to grayscale python convert RGB to grayscale python numpyu how to convert a rgb image to grayscale in python grey to rgb python python cvtcolor gray to rgb convert rgb to grayscale python opencv python convert rgb to grey numpy rgb to grayscale convert rgb to gray python how to convert gray image to rgb in python how to convert grayscale image to rgb in python convert into grayscale python convert rgb array to grayscale python convert rgb to grayscale python rgb to grayscale python opencv convert grayscale to colour image python convert image from rgb to grayscale python python convert rgb to grayscale opencv rgb to grayscale python how to convert rgb to grayscale in python exemple convert grayscale to rgb python how to convert rgb to grayscale in python image to grayscale python gray to rgb python convert gray image to rgb python python grayscale to rgb convert bytes to grayscale python binary to grayscale python make gray image to rgb python python convert to greyscale convert rgb yo grayscale python how to convert to grayscale in python from rgb to grayscale python cv2 convert a color data into grayscale python convert image grayscale to rgb python how to convert grayscale to rgb python implementation how to convert gray to rgb python implementation how to convert gray to rgb in python pytorch grayscale to rgb python convert to grayscale convert rgb to grayscale in python python rgb to grayscale grayscale to rgb python convert to grayscale python rgb to grayscale python
Made with love
This website uses cookies to make IQCode work for you. By using this site, you agree to our cookie policy

Welcome Back!

Sign up to unlock all of IQCode features:
  • Test your skills and track progress
  • Engage in comprehensive interactive courses
  • Commit to daily skill-enhancing challenges
  • Solve practical, real-world issues
  • Share your insights and learnings
Create an account
Sign in
Recover lost password
Or log in with

Create a Free Account

Sign up to unlock all of IQCode features:
  • Test your skills and track progress
  • Engage in comprehensive interactive courses
  • Commit to daily skill-enhancing challenges
  • Solve practical, real-world issues
  • Share your insights and learnings
Create an account
Sign up
Or sign up with
By signing up, you agree to the Terms and Conditions and Privacy Policy. You also agree to receive product-related marketing emails from IQCode, which you can unsubscribe from at any time.
Creating a new code example
Code snippet title
Source