You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# to make terminal capture image into light mode while keeping the colour data,# invert lightness channel in hls color modelimage_hls=cv2.cvtColor(image_bgra, cv2.COLOR_BGR2HLS)
h, l, s=cv2.split(image_hls)
plt.imshow(cv2.merge([l, l, l]))
gc.collect()