MoveChroma

From Avisynth wiki
(Difference between revisions)
Jump to: navigation, search
m (1 revision)
(update a few links)
 
(2 intermediate revisions by one user not shown)
Line 1: Line 1:
Moves chroma (color). This will lead to grey edges, from where the chroma is moved. Requires [[YUV]] material.
+
{{FilterCat4|External_filters|Plugins|Restoration_filters|Chroma correction}}
 +
{{Filter3
 +
|1=[https://web.archive.org/web/20160314054223/http://sky.geocities.jp/apechironnup/ apechironnup (aka noraneco)]
 +
|2=v0.1
 +
|3=[http://noraneco.ddo.jp/MoveChroma.20090823.zip MoveChroma.20090823.zip]
 +
|4=Chroma Correction
 +
|5=Open source
 +
|6=}}
 +
== Description ==
 +
Chroma shifting filter; can be used to independently shift the U/V channels left or right.
 +
<br>
 +
<br>
 +
== Requirements ==
 +
* [x86]: [[AviSynth+]] or AviSynth 2.5.8 or [http://sourceforge.net/projects/avisynth2/ greater]
 +
* Supported color formats: [[YUY2]], [[YV12]]
 +
<br>
 +
== [[Script variables|Syntax and Parameters]] ==
 +
:{{Template:FuncDef|MoveChroma (clip, int "Cb", int "Cr")}}
 +
<br>
 +
::{{Par2| |clip| }}
 +
:::Input clip.
 +
<br>
 +
::{{Par2|Cb|int|0}}
 +
::{{Par2|Cr|int|0}}
 +
:::{{Template:FuncDef3|Cb}} represents the U plane (blue), {{Template:FuncDef3|Cr}} represents the V plane (red). Negative values shift to the left, positive values shift to the right.
 +
<br>
 +
== Examples ==
 +
Shift the U plane 2 pixels to the left and shift the V plane 2 pixels to the right.<br>
 +
[[AviSource]]("Blah.avi")
 +
MoveChroma(Cr=-2, Cb=2)
 +
<br>
 +
== Changelog ==
 +
Version      Date            Changes<br>
 +
v0.1        2009-08-23      - Initial release
 +
<br>
  
moveleft=0
+
== Archived Downloads ==
moveright=0
+
{| class="wikitable" border="1"; width="600px"
moveup=0
+
|-
movedown=0
+
!!width="100px"| Version
vi = [[Crop]](moveleft, moveup, -moveright, -movedown).[[AddBorders]](moveright, movedown, moveleft, moveup)
+
!!width="150px"| Download
[[MergeChroma]](vi)
+
!!width="150px"| Mirror
 
+
|-
Adjust the parameters to move chroma only.
+
!v0.1
 
+
|[http://noraneco.ddo.jp/MoveChroma.20090823.zip MoveChroma.20090823.zip]
Back to [[Shared functions]].
+
|[http://web.archive.org/web/20131128004559/http://sky.geocities.jp/apechironnup/MoveChroma.20090823.zip MoveChroma.20090823.zip]
 
+
|}
[[Category:Shared_functions]]
+
<br>
[[Category:External filters]]
+
== External Links ==
 +
*[https://web.archive.org/web/20160314054223/http://sky.geocities.jp/apechironnup/ archive.org] - archived homepage (Japanese), [http://noraneco.ddo.jp/ new homepage].  
 +
<br>
 +
<br>
 +
-----------------------------------------------
 +
'''Back to [[External_filters#Chroma_correction|External Filters]] &larr;'''

Latest revision as of 10:12, 8 March 2021

Abstract
Author apechironnup (aka noraneco)
Version v0.1
Download MoveChroma.20090823.zip
Category Chroma Correction
License Open source
Discussion

Contents

[edit] Description

Chroma shifting filter; can be used to independently shift the U/V channels left or right.

[edit] Requirements


[edit] Syntax and Parameters

MoveChroma (clip, int "Cb", int "Cr")


clip   =
Input clip.


int  Cb = 0
int  Cr = 0
Cb represents the U plane (blue), Cr represents the V plane (red). Negative values shift to the left, positive values shift to the right.


[edit] Examples

Shift the U plane 2 pixels to the left and shift the V plane 2 pixels to the right.

AviSource("Blah.avi")
MoveChroma(Cr=-2, Cb=2)


[edit] Changelog

Version      Date            Changes
v0.1 2009-08-23 - Initial release


[edit] Archived Downloads

Version Download Mirror
v0.1 MoveChroma.20090823.zip MoveChroma.20090823.zip


[edit] External Links




Back to External Filters

Personal tools