Log in

View Full Version : How can i display only the chroma plane?


mastrboy
8th November 2010, 13:30
I'm looking for a function to display only the chroma plane, similar to histogram(mode="luma")

Does such a function exist?

Gavino
8th November 2010, 13:49
UToY (http://avisynth.org/mediawiki/UToY), VToY (http://avisynth.org/mediawiki/VToY)

mastrboy
8th November 2010, 14:02
almost what i was looking for, but you put me on the right track, doing this: YToUV(UTOY(),VTOY()) i got the output i was looking for...

Thank you

Didée
8th November 2010, 14:43
In case you've loaded mt_masktools anyway, shorter command:

mt_lut(Y=-128,U=2,V=2)

Though, displaying a YV12 (or YUY2) clip "without luma" is basically not possible. You always have to use some luma.

mastrboy
8th November 2010, 17:06
thanks for the info Didée, some luma is okay, i needed this command to see how much a denoiser blurred the chroma plane vs another denoiser.