Swap: Difference between revisions

From Avisynth wiki
Jump to navigationJump to search
Raffriff42 (talk | contribs)
formatting, links, phrasing
add link to avs+ documentation
 
(12 intermediate revisions by 3 users not shown)
Line 1: Line 1:
<div {{BlueBox2|40|0|3px solid purple}} >
{{AvsPlusFullname}}<br>
Up-to-date documentation: [https://avisynthplus.readthedocs.io/en/latest/avisynthdoc/corefilters/swap.html https://avisynthplus.readthedocs.io]
</div>
Swaps chroma channels in [[YUV]] clips.
__TOC__
<!-- ==== Syntax and Parameters ==== -->
<div style="max-width:62em" >
{{FuncDefH4|SwapUV}}
{{FuncDef
{{FuncDef
|SwapUV(clip ''clip'')
|SwapUV(clip ''clip'')
Line 6: Line 18:




{{FuncDefH4|UToY, VToY}}
{{Func2Def
{{Func2Def
|UToY(clip ''clip'')
|UToY(clip ''clip'')
Line 18: Line 31:




{{FuncDefH4|UToY8, VToY8}}
{{Func2Def
{{Func2Def
|UToY8(clip ''clip'')
|UToY8(clip ''clip'')
Line 23: Line 37:
}}
}}


::Shorthand for '''UToY.'''[[ConvertToY8]] and '''VToY.'''[[ConvertToY8]], but faster. Added in v2.60.
:Shorthand for '''UToY.'''[[ConvertToY8]] and '''VToY.'''[[ConvertToY8]], but faster.
 
   
   
 
{{FuncDefH4|YToUV}}
{{FuncDef
{{FuncDef
|YToUV(clip ''clipU'', clip ''clipV'' [, clip ''clipY'' ] )
|YToUV(clip ''clipU'', clip ''clipV'' [, clip ''clipY'' [, clip ''clipA'' ] ] )
}}
}}


:Copies {{FuncArg|clipU}}:''Y''&nbsp; to output ''U'' and {{FuncArg|clipV}}:''Y''&nbsp; to output ''V''.  
:Copies the ''Y'' (luma channel) of {{FuncArg|clipU}} to the ''U'' channel of the output clip and the ''Y'' (luma channel) of {{FuncArg|clipV}} to the ''V'' channel of the output clip.  
:If {{FuncArg|clipY}} is given, copies {{FuncArg|clipY}}:''Y''&nbsp; to output ''Y''; else output ''Y'' is 50% grey.
:If {{FuncArg|clipY}} is given, copies the ''Y'' (luma channel) of {{FuncArg|clipY}} to the ''Y'' channel of the output clip.
:{{AvsPluscon}} And if {{FuncArg|clipA}} is given too, copies the ''Y'' (luma channel) of {{FuncArg|clipA}} to the ''A'' channel of the output clip.
:Depending on the color format, the image resolution can be changed.
:Depending on the color format, the image resolution can be changed.
</div>




==== Color models ====
==== See Also ====
[[YUY2]] and [[YV12]] are supported. Starting from v2.60, [[Y8]], [[YV411]], [[YV16]] and [[YV24]] are also supported.
*Show [[RGB]] channels with [[ShowAlpha|ShowAlpha/Red/Green/Blue]].
*{{AvsPluscon}} [[Extract]] for {{Deep_color}} support.




== Example ==
==== Examples ====
* Blurs the U chroma channel
<div style="max-width:62em" >
<div {{BoxWidthIndent|28|1}} >
* Blur the U chroma channel
<div {{BoxWidthIndent|32|2}} >
  video = [[ColorBars]](512, 512).[[ConvertToYV12]]
  video = [[ColorBars]](512, 512).[[ConvertToYV12]]
  u_chroma = '''UToY'''(video).[[Blur]](1.5)
  u_chroma = '''UToY'''(video).[[Blur]](1.5)
Line 48: Line 67:
</div>
</div>


* Show ''U'' and ''V'' channels stacked for illustration purposes.
** Note that with a [[YV12]] source (like the one below), the ''U'' and ''V'' images will be half the size of the original.
** In the ''U'' and ''V'' images, gray will be at 128{{D}} and saturated colors will appear brighter or darker.
{{HalfBreak}}
:[[File:SwapEx-Sintel9150.jpg]]
<div {{BoxWidthIndent|32|2}} >
[[StackVertical]](
\  [[Subtitle]]("YV12 original", align=2),
\  [[StackHorizontal]](
\      '''UtoY'''.Subtitle("UtoY", align=2),
\      '''VtoY'''.Subtitle("VtoY", align=2)
\  )
\ )
</div>
</div>
==== Changes ====
{| border="1"
|-
| v2.60
| Added UToY8, VToY8.
|-
| v2.60
| Added new color formats [[Y8]], [[YV411]], [[YV16]] and [[YV24]].
|}


[[Category:Internal_filters]]
[[Category:Internal_filters]]
[[Category:Levels_and_Chroma_filters]]
[[Category:Levels_and_Chroma_filters]]

Latest revision as of 05:24, 17 September 2022

AviSynth+
Up-to-date documentation: https://avisynthplus.readthedocs.io

Swaps chroma channels in YUV clips.

SwapUV

SwapUV(clip clip)

Swaps U and V (chroma) channels. Corrects certain decoding errors – faces blue instead of red, etc.


UToY, VToY

UToY(clip clip)
VToY(clip clip)

Copies U or V chroma plane to the Y luma plane.
All color (chroma) information is removed, so the image is now greyscale.
Depending on the color format, the image resolution can be changed – i.e.,
with a YV24 source, UToY is the same width and height as clip, but
with a YV12 source, UToY is half clip's width and height.


UToY8, VToY8

UToY8(clip clip)
VToY8(clip clip)

Shorthand for UToY.ConvertToY8 and VToY.ConvertToY8, but faster.


YToUV

YToUV(clip clipU, clip clipV [, clip clipY [, clip clipA ] ] )

Copies the Y (luma channel) of clipU to the U channel of the output clip and the Y (luma channel) of clipV to the V channel of the output clip.
If clipY is given, copies the Y (luma channel) of clipY to the Y channel of the output clip.
AVS+ And if clipA is given too, copies the Y (luma channel) of clipA to the A channel of the output clip.
Depending on the color format, the image resolution can be changed.


See Also


Examples

  • Blur the U chroma channel
video = ColorBars(512, 512).ConvertToYV12
u_chroma = UToY(video).Blur(1.5)
YToUV(u_chroma, video.VToY)
MergeLuma(video)
  • Show U and V channels stacked for illustration purposes.
    • Note that with a YV12 source (like the one below), the U and V images will be half the size of the original.
    • In the U and V images, gray will be at 128d and saturated colors will appear brighter or darker.
 
StackVertical(
\  Subtitle("YV12 original", align=2),
\  StackHorizontal(
\       UtoY.Subtitle("UtoY", align=2), 
\       VtoY.Subtitle("VtoY", align=2)
\  )
\ )


Changes

v2.60 Added UToY8, VToY8.
v2.60 Added new color formats Y8, YV411, YV16 and YV24.