I am trying to change the L*
values of an image in L*a*b*
color space. But the resultant image is not what I expected. How should I change brightness of the image using the L*a*b*
values?
My Code:
imd = np.asarray(ibuffer).copy()
imgb = cv2.cvtColor(imd, cv2.COLOR_BGR2Lab)
value = 255 * (int(bvalue)/100)
imgb[:,:,0] += int(value)
imgb = cv2.cvtColor(imgb,cv2.COLOR_LAB2BGR)
photo = Image.fromarray(imgb)
photo = resize(photo)
photo = ImageTk.PhotoImage(photo)
canvas.photo = photo
canvas.create_image(0,0,anchor="nw",image = photo)
Original image:
Edited image:
You're adding some value to the already existing
L*
value, which will cause integer overflows, thus unexpected behaviour. What you actually want – at least, to my understanding – is to have a scaling between 0 % – 100 % of the originalL*
value, so something like this:Therefore, just multiply the original
L*
value with the percentage you input (full code to reproduce the above output):