April 2020
Intermediate to advanced
438 pages
12h 2m
English
Perform the following steps to change the brightness of a colored image using the Lab color space and scikit-image library functions:
im1 = rgb2lab(im)im1[...,0] = im1[...,0] + 50
im1 = lab2rgb(im1)
im1 = rgb2lab(im)im1[...,0] = im1[...,0] - 50 im1 = lab2rgb(im1)
If you run the preceding ...
Read now
Unlock full access