idea: Instead of adjustingthe gamma, also try Retinex. (Retinex requires an of all black bars cropped source and can enhance artifacts, so probably only interessting on already high quality sources)
![[Image: grafik.png]](https://i.ibb.co/r7qmdYW/grafik.png)
![[Image: grafik.png]](https://i.ibb.co/GkTrNSf/grafik.png)
(I used just ddcolor)
![[Image: grafik.png]](https://i.ibb.co/r7qmdYW/grafik.png)
![[Image: grafik.png]](https://i.ibb.co/GkTrNSf/grafik.png)
(I used just ddcolor)
# Color Adjustment
clip = adjust.Tweak(clip=clip, hue=0.00, sat=0.00, cont=1.00, coring=True)
# adjusting color space from YUV420P10 to RGB30 for vsRetinex
clip = core.resize.Bicubic(clip=clip, format=vs.RGB30, matrix_in_s="709", range_s="limited")
# color adjustment using Retinex
clip = core.retinex.MSRCR(input=clip, sigma=[25,80,250], fulls=False, fulld=False)
# adjusting color space from RGB30 to RGBH for vsDDColor
clip = core.resize.Bicubic(clip=clip, format=vs.RGBH, range_s="limited")
# adding colors using DDColor
from vsddcolor import ddcolor
clip = ddcolor(clip=clip, model=1)
----
Dev versions are in the 'experimental'-folder of my GoogleDrive, which is linked on the download page.
Dev versions are in the 'experimental'-folder of my GoogleDrive, which is linked on the download page.