“Konvertieren Sie das Bild in Schwarz -Weiß -Python” Code-Antworten

Farbe zu Schwarz -Weiß CV2

import cv2

originalImage = cv2.imread("PATH/TO/IMG")
grayImage = cv2.cvtColor(originalImage, cv2.COLOR_BGR2GRAY)
Prickly Piranha

Python Bild schwarz und weiß

from PIL import Image
img = Image.open("image.jpg")
img.convert("1").save("result.jpg")
Leo

Konvertieren Sie das Bild in Schwarz -Weiß -Python

#applying thresholding technique to return black and white image (threshold = 127 = 255/2)
import cv2
  
originalImage = cv2.imread('image.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)
minty_mosquito_69

Ähnliche Antworten wie “Konvertieren Sie das Bild in Schwarz -Weiß -Python”

Fragen ähnlich wie “Konvertieren Sie das Bild in Schwarz -Weiß -Python”

Weitere verwandte Antworten zu “Konvertieren Sie das Bild in Schwarz -Weiß -Python” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen