<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="http://avisynth.nl/skins/common/feed.css?303"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>http://avisynth.nl/index.php?action=history&amp;feed=atom&amp;title=Amp</id>
		<title>Amp - Revision history</title>
		<link rel="self" type="application/atom+xml" href="http://avisynth.nl/index.php?action=history&amp;feed=atom&amp;title=Amp"/>
		<link rel="alternate" type="text/html" href="http://avisynth.nl/index.php?title=Amp&amp;action=history"/>
		<updated>2026-04-24T13:31:21Z</updated>
		<subtitle>Revision history for this page on the wiki</subtitle>
		<generator>MediaWiki 1.19.24</generator>

	<entry>
		<id>http://avisynth.nl/index.php?title=Amp&amp;diff=12157&amp;oldid=prev</id>
		<title>Reel.Deal: Amp (2014/12/20)</title>
		<link rel="alternate" type="text/html" href="http://avisynth.nl/index.php?title=Amp&amp;diff=12157&amp;oldid=prev"/>
				<updated>2020-11-08T14:57:42Z</updated>
		
		<summary type="html">&lt;p&gt;Amp (2014/12/20)&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;{{FilterCat4|External_filters|Plugins|Other_filters|Debugging/Diagnostic_filters}}&lt;br /&gt;
{{Filter3&lt;br /&gt;
|{{Author/David Horman}}&lt;br /&gt;
|2014-12-20&lt;br /&gt;
|3=[http://horman.net/avisynth/download/amp.zip amp.zip]&lt;br /&gt;
|4=Debug filter&lt;br /&gt;
|5=&lt;br /&gt;
|6=[https://forum.doom9.org/showthread.php?p=1703332#post1703332 Doom9 Thread]&lt;br /&gt;
}}&lt;br /&gt;
== Description ==&lt;br /&gt;
[[Amp]] performs temporal smoothing, then (optionally) enhances the difference between the windowed average and the current frame. It was inspired by [[RgbAmplifier]]. &lt;br /&gt;
&lt;br /&gt;
In theory, this should let you do things like make pulses visible in videos of human faces or wrists, but I suspect you need a very low noise video to pick that up.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
== Requirements ==&lt;br /&gt;
* [x86]: [[AviSynth+]] or [https://sourceforge.net/projects/avisynth2/ AviSynth 2.6]&lt;br /&gt;
* Supported color formats: [[RGB24]], [[RGB32]], [[YUY2]], [[YV12]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== [[Script variables|Syntax and Parameters]] ==&lt;br /&gt;
:{{Template:FuncDef|amp (clip, int &amp;quot;window&amp;quot;, float &amp;quot;y&amp;quot;, float &amp;quot;u&amp;quot;, float &amp;quot;v&amp;quot;, float &amp;quot;a&amp;quot;)}}&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
::{{Par2| |clip| }}&lt;br /&gt;
:::Input clip.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
::{{Par2|window|int|0}}&lt;br /&gt;
:::The number of frames either side of the current one used for the temporal smoothing, i.e. a value of 5 will smooth over 5*2+1=11 frames.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
::{{Par2|y|float|-1.0}}&lt;br /&gt;
::{{Par2|u|float|}}&lt;br /&gt;
::{{Par2|v|float|}}&lt;br /&gt;
::{{Par2|a|float|}}&lt;br /&gt;
:::For YV12/YUY2 colour spaces, the parameters y u v specify the level of enhancement for each channel. a is ignored.&lt;br /&gt;
:::For RGB24/RGB32 colour spaces, the parameters y u v [a] specify the level of enhancement for the channels r g b [a].&lt;br /&gt;
:::A value of 0 performs no enhancement (returns the unaltered channel of the source frame).&lt;br /&gt;
:::If you only specify y, the same value will be used for the other channels.&lt;br /&gt;
:::By not specifying any of these four parameters (or giving them the value of -1) the filter acts purely as a temporal smoother.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
== Examples ==&lt;br /&gt;
amp with default settings:&lt;br /&gt;
 [[AviSource]](&amp;quot;Blah.avi&amp;quot;)&lt;br /&gt;
 amp()&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
== Changelog ==&lt;br /&gt;
 Version      Date            Changes&amp;lt;br&amp;gt;&lt;br /&gt;
 20141220     2014/12/20      - Initial release&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
== Archived Downloads ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; border=&amp;quot;1&amp;quot;; width=&amp;quot;600px&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!!width=&amp;quot;100px&amp;quot;| Version&lt;br /&gt;
!!width=&amp;quot;150px&amp;quot;| Download&lt;br /&gt;
!!width=&amp;quot;150px&amp;quot;| Mirror&lt;br /&gt;
|-&lt;br /&gt;
!2014-12-20&lt;br /&gt;
|[http://horman.net/avisynth/download/amp.zip amp.zip]&lt;br /&gt;
|[https://web.archive.org/web/20201108144638if_/http://horman.net/avisynth/download/amp.zip amp.zip]&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==External Links ==&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
-----------------------------------------------&lt;br /&gt;
'''Back to [[External_filters#Levels_and_Chroma|External Filters]] &amp;amp;larr;'''&lt;/div&gt;</summary>
		<author><name>Reel.Deal</name></author>	</entry>

	</feed>