-1
我一直在努力實現所提供的白平衡算法: https://pippin.gimp.org/image-processing/chapter-automaticadjustments.html自動白平衡與Grayworld假設
我用蟒蛇和OpenCV實現它們。我無法產生與網站相同的結果。
在grayworld假設,例如,我使用下面的代碼:
import cv2 as cv
import numpy as np
def show(final):
print 'display'
cv.imshow("Temple", final)
cv.waitKey(0)
cv.destroyAllWindows()
def saveimg(final):
print 'saving'
cv.imwrite("result.jpg", final)
# Insert any filename with path
img = cv.imread("grayworld_assumption_0.png")
res = img
final = cv.cvtColor(res, cv.COLOR_BGR2LAB)
avg_a = -np.average(final[:,:,1])
avg_b = -np.average(final[:,:,2])
for x in range(final.shape[0]):
for y in range(final.shape[1]):
l,a,b = final[x][y]
shift_a = avg_a * (l/100.0) * 1.1
shift_b = avg_b * (l/100.0) * 1.1
final[x][y][1] = a + shift_a
final[x][y][2] = b + shift_b
final = cv.cvtColor(final, cv.COLOR_LAB2BGR)
final = np.hstack((res, final))
show(final)
saveimg(final)
我得到的結果
我要去哪裏錯誤?
'cv.imread()'默認爲BGR嗎?我以爲它使用RGB,但我現在找不到文檔。這可能是問題嗎? ... NVM找到了這些文檔,並默認使用BGR。 – norok2
@norok它在http://docs.opencv.org/3.0-beta/modules/imgcodecs/doc/reading_and_writing_images.html中說,「在彩色圖像的情況下,解碼圖像將以BGR順序存儲信道「。 – Saptarshi