“OpenCV Python Grayscale Image to Color” Kode Jawaban

Konversi gambar ke opencv skala abu -abu

img_gray_mode = cv2.imread(path, cv2.IMREAD_GRAYSCALE)
Creepy Cormorant

OpenCV Python Grayscale Image to Color

import cv2

# Reading color image as grayscale
gray = cv2.imread("color-img.png",0)

# Showing grayscale image
cv2.imshow("Grayscale Image", gray)

# waiting for key event
cv2.waitKey(0)

# destroying all windows
cv2.destroyAllWindows()
Tanishq Vyas

Jawaban yang mirip dengan “OpenCV Python Grayscale Image to Color”

Pertanyaan yang mirip dengan “OpenCV Python Grayscale Image to Color”

Lebih banyak jawaban terkait untuk “OpenCV Python Grayscale Image to Color” di Python

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya