Answers for "python3 cv2 black and white iamge"

3

opencv convert to black and white

import cv2
  
originalImage = cv2.imread('C:/Users/N/Desktop/Test.jpg')
grayImage = cv2.cvtColor(originalImage, cv2.COLOR_BGR2GRAY)
  
(thresh, blackAndWhiteImage) = cv2.threshold(grayImage, 127, 255, cv2.THRESH_BINARY)
 
cv2.imshow('Black white image', blackAndWhiteImage)
cv2.imshow('Original image',originalImage)
cv2.imshow('Gray image', grayImage)
  
cv2.waitKey(0)
cv2.destroyAllWindows()
Posted by: Guest on May-22-2020
1

color to black and white cv2

import cv2

originalImage = cv2.imread("PATH/TO/IMG")
grayImage = cv2.cvtColor(originalImage, cv2.COLOR_BGR2GRAY)
Posted by: Guest on July-26-2020

Code answers related to "python3 cv2 black and white iamge"

Python Answers by Framework

Browse Popular Code Answers by Language