Toon

From Avisynth wiki
(Difference between revisions)
Jump to: navigation, search
(Toon-v1.1)
Line 2: Line 2:
 
{{Filter
 
{{Filter
 
|mf
 
|mf
|1.0
+
|v1.1
|[http://web.archive.org/web/20090218093135/http://mf.creations.nl/avs/filters/Toon-v1.0.dll Toon-v1.0.dll]
+
|[http://dl.dropboxusercontent.com/s/t0o02hlxo0vx9ad/Toon-v1.1.7z Toon-v1.1.7z]
|[[Linedarkeners]]
+
|Line Darkeners
 
|
 
|
|
+
* YV12
}}
+
|closed source}}
 
+
<br>
{{Template:FuncDef|Toon(float ''strength'')}}
+
 
+
== Abstract ==
+
 
+
Simple but effective linedarkener.
+
 
+
== Requirements ==
+
* [http://ziquash.chez.tiscali.fr/aWarpSharp%20beta%201.zip aWarpSharp]
+
* You may need [http://www.microsoft.com/downloads/details.aspx?FamilyID=200b2fd9-ae1a-4a14-984d-389c36f85647&DisplayLang=en Microsoft Visual C++ 2005 SP1 Redistributable Package (x86)]
+
 
+
 
== Description ==
 
== Description ==
 +
:A simple but effective line darkener. It enhances "cartoon-like" sources, such as anime, by applying filtering to edges and such.
 +
:Toon-v1.0 tries to be as close as possible to Toon-v0.82,  but it has about 2 times the precision, the mask is more accurate, it's faster, and a lot less memory consumption.
 +
:Toon-v1.1 is a binary patched Toon-v1.0 that allows to use the updated and faster [[aWarpSharp2]] instead of the old [[aWarpSharp]].
 +
<br>
 +
== Requirements: ==
 +
:- AviSynth 2.5.8 or later
 +
:- [http://www.microsoft.com/en-us/download/details.aspx?id=26347 Microsoft Visual C++ 2005 SP1 Redistributable Package (x86)]
 +
:- Supported color formats: [[YV12]]
 +
:- [[FAQ_different_types_content#How_do_I_recognize_progressive.2C_interlaced.2C_telecined.2C_hybrid_and_blended_content.3F|Progressive]] input only
  
Enhances "cartoon-like" sources, such as anime, by applying filtering to edges and such.
+
==== Required Filters: ====
 
+
:*[[aWarpSharp2]]
== MODS ==
+
<br>
 
+
== Syntax and Parameters ==
[http://pavelsx.googlepages.com/Toon-v1.1.7z Toon-v1.1 patched by SEt to use aWarpSharp2 instead of aWarpSharp]
+
:{{Template:FuncDef|Toon (clip, float "strength")}}
 
+
<br>
== Usage and parameters ==
+
::{{Par|strength|float|1.0}}
 
+
:::Strength by default is set to the maximum value.
 +
::::Range: 0.0 - 1.0
 +
<br>
 +
== Examples ==
 
  [[AviSource]]("whatever.avi")
 
  [[AviSource]]("whatever.avi")
  Toon(0.5)
+
  Toon(strength=1.0)
 
+
<br>
{{ParR|strength|float|1.0|0-1.0}}
+
== Changelog ==
 
+
  v1.1 [http://web.archive.org/web/20131229193342/http://e6be4b31-a-62cb3a1a-s-sites.googlegroups.com/site/pavelsx2/Toon-v1.1.7z?attachauth=ANoY7cpA3mrXbKknkhZ95YUNBoA7B-SZe5W9Aqs3JS_t-mydQvUKrkK77mq9VLs160mDXnGBwfLV1v5Y0D1Ca9-zQrMpE8RvaA9lf5d9jfkbSTnPkeDK_vymF5nHQBEv8BY_7y2Z2RRazpDf_ol_vBCtFk-6aVmkv-r9n1pZCYcWIQ0H7fnUZ_mh1VG1wY-VvWEfdRT6dzFujTyDrlUaSXFy_QpCyNhL_g%3D%3D&attredirects=1 2008-08-24] [SEt]
== Discussion ==
+
      - Binary patched Toon-v1.0 to use [[aWarpSharp2]] instead of [[aWarpSharp]]<br>
[http://forum.doom9.org/showthread.php?t=131454 Doom9 forum]
+
  v1.0 [http://web.archive.org/web/20120104032204/http://mf.creations.nl/avs/filters/Toon-v1.0.dll 2007-11-03]
 +
      - Initial release
 +
== Links ==
 +
*[http://forum.doom9.org/showthread.php?t=131454 Doom9 Forum] - Toon v1.0 discussion.
 +
*[http://forum.doom9.org/showpost.php?p=1289036&postcount=1 Doom9 Forum] - Binary patched Toon-v1.1 (last sentence)
 +
<br>
 +
<br>
 +
<br>
 +
-----------------------------------------------
 +
'''Back to [[External_filters#Line_Darkening|External Filters]] &larr;'''

Revision as of 00:12, 30 December 2013

Abstract
Author mf
Version v1.1
Download Toon-v1.1.7z
Category Line Darkeners
Requirements
  • YV12
License closed source
Discussion


Contents

Description

A simple but effective line darkener. It enhances "cartoon-like" sources, such as anime, by applying filtering to edges and such.
Toon-v1.0 tries to be as close as possible to Toon-v0.82, but it has about 2 times the precision, the mask is more accurate, it's faster, and a lot less memory consumption.
Toon-v1.1 is a binary patched Toon-v1.0 that allows to use the updated and faster aWarpSharp2 instead of the old aWarpSharp.


Requirements:

- AviSynth 2.5.8 or later
- Microsoft Visual C++ 2005 SP1 Redistributable Package (x86)
- Supported color formats: YV12
- Progressive input only

Required Filters:


Syntax and Parameters

Toon (clip, float "strength")


strength float = 1.0
Strength by default is set to the maximum value.
Range: 0.0 - 1.0


Examples

AviSource("whatever.avi")
Toon(strength=1.0)


Changelog

  v1.1 2008-08-24 [SEt]
     - Binary patched Toon-v1.0 to use aWarpSharp2 instead of aWarpSharp
v1.0 2007-11-03 - Initial release

Links





Back to External Filters

Personal tools