『漫游』酷论坛>『影音数码技术学习交流』>有没有什么纯柔化的 ..

有没有什么纯柔化的滤镜??

a-ha@2008-05-05 19:12

除了TNL和DTS之外。。。:o
引用

realstan@2008-05-05 19:13

blur
引用

a-ha@2008-05-05 21:11

blockbuster??
引用

xtyz@2008-05-05 21:23

blur(0,1)

:o shin经常这么说
引用

a-ha@2008-05-05 21:29

汗。。。。这个要装插件么。。我没找到
引用

雷鸣@2008-05-05 21:40

引用
最初由 a-ha 发布
汗。。。。这个要装插件么。。我没找到

AVS自带的

文档位置:
x:/xxxxx/xx....../AviSynth 2.5/Docs/english/corefilters/blur.htm

说明
Blur (clip, float amount)
Blur (clip, float amountH, float amountV, bool MMX)

This is a simple 3x3-kernel blurring filter. The largest allowable argument for Blur is about 1.58, which corresponds to a (1/3,1/3,1/3) kernel. A value of 1.0 gets you a (1/4,1/2,1/4) kernel. If you want a large-radius Gaussian blur, I recommend chaining several copies of Blur(1.0) together. (Anybody remember Pascal's triangle?)

Negative arguments to Blur actually sharpen the image. The smallest allowable argument to Blur is -1.0.

You can use 2 arguments to set independent Vertical and Horizontal amounts. Like this, you can use Blur(0,1) to filter only Vertically, for example to blend interlaced lines together. By default amountV=amountH.

A Known issue, with the MMX routines is the lack of full 8 bit precision in the calculations. This can lead to banding in the resultant image. Set the MMX=False option to use the slower but more accurate C++ routines if this is a concern.
引用

roozhou@2008-05-06 07:59

推荐unfilter
引用

| TOP