03.02.2021, 18:25
I checked the script that Hybrid generates,
with channel
Cu Selur
with channel
- 'auto'
clip = core.knlm.KNLMeansCL(clip=clip)
- 'Y'
clip = core.knlm.KNLMeansCL(clip=clip, channels="Y")
- 'UV'
clip = core.knlm.KNLMeansCL(clip=clip, channels="UV")
- 'YUV'
clip = core.knlm.KNLMeansCL(clip=clip, channels="YUV")
- 'RGB'
But this causes a an error:clip = core.knlm.KNLMeansCL(clip=clip, channels="RGB")
-> I'll fix that, but other than that I see no issue with the script created by Hybrid.Python exception: knlm.KNLMeansCL: 'channels' must be 'YUV', 'Y', or 'UV' with YUV color space!
Cu Selur