Log in

View Full Version : The outlines and the colors tremble sometimes. Are there fix for this old anime?


Cloudstrifeff7
27th April 2010, 19:38
I just recently ripped an old anime's dvd (2002 and 4:3, omg xD) and the outlines and colors tremble sometimes. Sorry for my bad english!

Here the link for video example, without deinterlace, crop, resize, filters and audio, there is only ColorMatrix(hints=true, threads=0): http://www.mediafire.com/?tm0l3lmnmyh

For the rainbows I use ChubbyRain2, but for the other problems, how do I fix?

UPDATE: With checkmate there aren't more outline tremble. :D Here the link Video using filters, but there are always color tremble (with edeen less, ma there are always...) damn...: http://www.mediafire.com/?nwzgoj1o1o5

My script:

LoadPlugin("C:\Program Files\MeGUI\tools\dgindex\DGDecode.dll")
DGDecode_mpeg2source("C:\Users\cloud\Desktop\rip\anime.d2v", info=3)
LoadPlugin("C:\Program Files\MeGUI\tools\avisynth_plugin\ColorMatrix.dll")
ColorMatrix(hints=true, interlaced=true, threads=0)
chubbyrain2()
checkmate()
Load_Stdcall_Plugin("C:\Program Files\MeGUI\tools\yadif\yadif.dll")
Yadif(order=1)
crop( 10, 0, -8, -4)
spline36resize(640,480)
edeen()
aWarpSharp2()
Toon()
msharpen()
AAA()


http://img180.imageshack.us/img180/9800/example1.png

http://img718.imageshack.us/img718/8233/example2u.png

poisondeathray
27th April 2010, 19:41
haven't looked at the video sample, but looks a lot like dot crawl

you could try checkmate (done before IVTCing)

Zarxrax
27th April 2010, 21:21
You should be able to fix the "color tremble" with a temporal filter like ttempsmooth.

Cloudstrifeff7
28th April 2010, 00:24
Thank you very much! xD

With checkmate I resolved oultines tremble. With ttempsmooth there are always color tremble. :( But with edeen I partially solved. xD

There is new link "with video using filters" and script. :)

Cloudstrifeff7
28th April 2010, 13:13
New image with color artifacts :(. Video here: http://www.mediafire.com/?nwzgoj1o1o5

http://img208.imageshack.us/img208/8388/colorsx.png

nx6
30th April 2010, 06:16
^ I think the image looks overprocessed now in this post here. A lot of detail has been lost from the clouds, and the the character edges look oversharpened.

Vitaliy Gorbatenko
30th April 2010, 07:21
msharpen too old. Use a LSFmod. edeen in direct way removes detail. You just set a number of plugins in script, even without tuning!!!
The script looks badly.
Please post a unprocessed video (demux video in dgindex). 3-5 sec. Not recoded.

mastrboy
1st May 2010, 01:37
Here is a little attempt from me...

# run before deinterlace, should take care of dotcrawl and most of the rainbows, the sample is a little smal and already encoded so little to work with.
tcomb()

# ttempsmooth should help to stabilize the noise, uncomment to last line to compare
TTempSmoothF(maxr=3, lthresh=4, cthresh=5, strength=2)

# denoise only luma
FFT3DFilter(sigma=1.2,bt=3,bw=32,bh=32,ow=16,oh=16,plane=0,ncpu=4)

# some sharpening and line thinning
aWarpSharp2(depth=6,type=1)
LSFmod(strength=125,ss_y=1.5,ss_x=1.5,overshoot=1,undershoot=1)

# Antialiasing, remove if to slow.
maa()

# Throw alot of grain in there to "hide" the luma noise
GradFun2DBmod(str=1.2,temp=100)

# colors look a little dull
Tweak(sat=1.06, bright=-2)

# for helping to remove luma noise comment Gradfun and uncomment the following line
#histogram(mode="luma")