Die Helligkeit des Bildes wird durch γ-Umwandlung geändert.
#Importieren Sie die Bibliothek
import cv2
import numpy as np
Dieses Mal werde ich das Bild von Lenna verwenden.
img = cv2.imread(r'../Lenna.jpg')
Stellen Sie den Wert von γ ein und führen Sie eine γ-Umwandlung durch.
gannma = 0.5
cvt_gannma = np.zeros([256,1],dtype=uint8)
for i in range(256):
cvt_gannma[[i],[0]] = 255 * (float(i) / 255) ** (1.0/gannma)
img_gannma = cv2.LUT(img,cvt_gannma)
Ergebnis der γ-Umwandlung
Recommended Posts