Artifacts in Anime/Toon Footage

This forum is for questions and discussion of all the aspects of handling and cleaning up your footage with Avisynth.
Locked
User avatar
Anno-san
Joined: Thu Dec 24, 2009 4:03 pm
Org Profile

Re: Artifacts in Anime/Toon Footage

Post by Anno-san » Sun Sep 19, 2010 9:26 pm

Perhaps some color settings with the graphics card are off.

User avatar
Kariudo
Twilight prince
Joined: Fri Jul 15, 2005 11:08 pm
Status: 1924 bots banned and counting!
Location: Los taquitos unidos
Contact:
Org Profile

Re: Artifacts in Anime/Toon Footage

Post by Kariudo » Sun Sep 19, 2010 9:57 pm

Running 32-bit avisynth on a 64-bit OS doesn't matter (running a 32-bit OS on a 64-bit cpu doesn't either). I highly doubt it would be anything wrong with the graphics card hardware (you'd be having a lot more problems besides video playback if that were the issue).

Unless you're running into this problem in other places (not just with vobs) then it's probably not a driver issue either. Might be worth it to update your card's drivers though (http://support.amd.com/us/gpudownload/Pages/index.aspx)
Image
Image

Mister Hatt
Joined: Tue Dec 25, 2007 8:26 am
Status: better than you
Contact:
Org Profile

Re: Artifacts in Anime/Toon Footage

Post by Mister Hatt » Mon Sep 20, 2010 5:41 am

My guess is either your filtering or your rendering are broken. I also didn't notice anything wrong with the chroma subsampling (and I had to borrow my sister's fabulous pink laptop to check.) At a guess, something in your playback chain is causing a chroma re-sample that is somehow borking on the red end, most likely a colour depth change somewhere. I doubt it's the driver or card itself though, but then again ATI have always had crappy drivers so who knows~

Do you see it without any filtering at all?

User avatar
Anno-san
Joined: Thu Dec 24, 2009 4:03 pm
Org Profile

Re: Artifacts in Anime/Toon Footage

Post by Anno-san » Mon Sep 20, 2010 8:56 am

Mister Hatt wrote:Do you see it without any filtering at all?
No.

The following images are from the source vob, opened in MPC-HC, no script.

Image

User avatar
Anno-san
Joined: Thu Dec 24, 2009 4:03 pm
Org Profile

Re: Artifacts in Anime/Toon Footage

Post by Anno-san » Mon Sep 20, 2010 12:31 pm

HMMMMMM. Now, suddenly, for some unexplained reason I cannot open any AVS scripts in any media player or editor (MPC, virtualdub, mplayer etc.).

User avatar
Anno-san
Joined: Thu Dec 24, 2009 4:03 pm
Org Profile

Re: Artifacts in Anime/Toon Footage

Post by Anno-san » Tue Sep 21, 2010 7:40 pm

Most recent script:

Code: Select all

Dgdecode_mpeg2source("C:\Users\?\dvd rip\Ed, Edd n Eddy\Ed Edd n Eddy Episode 2.d2v", cpu=6, info=3)
Colormatrix(hints=true, dest=2, interlaced=false)
TemporalDegrain()
FFT3Dgpu(sigma3=1, bt=3, plane=3)
ContraSharpening()
loadplugin("C:\users\?\downloads\warpsharp.dll")
EE()
When opening it in v'dub it gives the error "Invalid arguments to function ContraSharpening()".


BTW, what does the error "This application has failed to start because stlport_vc7146.dll was not found" man and how can I fix this? It gives this error for MeGUI and VDM too. Is there a directory the stlport dll can be put in so the error won't appear for any programs, or does the dll need to be added to each individual programs' folder?

User avatar
mirkosp
The Absolute Mudman
Joined: Mon Apr 24, 2006 6:24 am
Status: (」・ワ・)」(⊃・ワ・)⊃
Location: Gallarate (VA), Italy
Contact:
Org Profile

Re: Artifacts in Anime/Toon Footage

Post by mirkosp » Wed Sep 22, 2010 5:54 am

Contrasharpening works only if you feed it 2 clips. The first clip is the filtered clip, the second one the original.
Image

User avatar
Anno-san
Joined: Thu Dec 24, 2009 4:03 pm
Org Profile

Re: Artifacts in Anime/Toon Footage

Post by Anno-san » Wed Sep 22, 2010 9:14 am

mirkosp wrote:Contrasharpening works only if you feed it 2 clips. The first clip is the filtered clip, the second one the original.
How do I do this? Type the location of each file in the contrasharpening parentheses?

User avatar
mirkosp
The Absolute Mudman
Joined: Mon Apr 24, 2006 6:24 am
Status: (」・ワ・)」(⊃・ワ・)⊃
Location: Gallarate (VA), Italy
Contact:
Org Profile

Re: Artifacts in Anime/Toon Footage

Post by mirkosp » Wed Sep 22, 2010 9:44 am

Code: Select all

Dgdecode_mpeg2source("C:\Users\?\dvd rip\Ed, Edd n Eddy\Ed Edd n Eddy Episode 2.d2v", cpu=6, info=3)
Colormatrix(hints=true, dest=2, interlaced=false)
source = last
TemporalDegrain()
FFT3Dgpu(sigma3=1, bt=3, plane=3)
filtered = last
ContraSharpening(filtered,source)
loadplugin("C:\users\?\downloads\warpsharp.dll")
EE()
Image

User avatar
Anno-san
Joined: Thu Dec 24, 2009 4:03 pm
Org Profile

Re: Artifacts in Anime/Toon Footage

Post by Anno-san » Wed Sep 22, 2010 10:01 am

mirkosp wrote:

Code: Select all

Dgdecode_mpeg2source("C:\Users\?\dvd rip\Ed, Edd n Eddy\Ed Edd n Eddy Episode 2.d2v", cpu=6, info=3)
Colormatrix(hints=true, dest=2, interlaced=false)
source = last
TemporalDegrain()
FFT3Dgpu(sigma3=1, bt=3, plane=3)
filtered = last
ContraSharpening(filtered,source)
loadplugin("C:\users\?\downloads\warpsharp.dll")
EE()

Code: Select all

Dgdecode_mpeg2source("C:\Users\!\dvd rip\Ed, Edd n Eddy\Ed Edd n Eddy Episode 2.d2v", cpu=6, info=3)
Colormatrix(hints=true, dest=2, interlaced=false)
source = last
TemporalDegrain()
FFT3Dgpu(sigma3=1, bt=3, plane=3)
filtered = last
ContraSharpening(clip filtered="C:\users\1\videos\Ed Edd n Eddy Episode 2.avs", clip original="C:\users\1\dvd rip\Ed, Edd n Eddy\VTS_01_CHAPTER_01_1.vob")
loadplugin("C:\users\1\downloads\warpsharp.dll")
EE()
Gives the error "expected a , or )".

Code: Select all

Dgdecode_mpeg2source("C:\Users\!\dvd rip\Ed, Edd n Eddy\Ed Edd n Eddy Episode 2.d2v", cpu=6, info=3)
Colormatrix(hints=true, dest=2, interlaced=false)
source = last
TemporalDegrain()
FFT3Dgpu(sigma3=1, bt=3, plane=3)
filtered = last
ContraSharpening(filtered="C:\users\1\videos\Ed Edd n Eddy Episode 2.avs", source="C:\users\1\dvd rip\Ed, Edd n Eddy\VTS_01_CHAPTER_01_1.vob")
loadplugin("C:\users\1\downloads\warpsharp.dll")
EE()
Gives the invalid arguments error.

Locked

Return to “AviSynth Help”