digitalFAQ.com Forums [Archives]

digitalFAQ.com Forums [Archives] (http://www.digitalfaq.com/archives/)
-   Video Capturing / Recording (http://www.digitalfaq.com/archives/capture/)
-   -   Super noisy VHS video captures (http://www.digitalfaq.com/archives/capture/3039-super-noisy-vhs.html)

rendalunit 03-20-2003 01:18 PM

Super noisy VHS video captures
 
I have some sort of interference that causes darkish horizontal lines in my captures. I have to use very heavy smoothing in my caps and the best spatial smoother I've found to do this is Smart Smoother. Here's the script I'm using
Code:

#==============================================#
# -= AviSynth script by MovieStacker v1.1.1 =- #
#==============================================#

import("c:\encoding\functions.h")

AviSource("D:\CAPTURE.AVI",false)
trim(445,161651)
FieldDeinterlace()
BicubicResize(320, 208, 1/3, 1/3, 0, 6, 352, 468)
ConvertToRGB()
VD_SmartSmoother(5,125,false)
ConvertToYUY2()
BlockBuster(method="noise", detail_max=100, variance=2, seed=1)
AddBorders(16, 16, 16, 16)
LegalClip()

###########################################
# Smart Smoother by Donald Graft, v1.1          #
#                                          #
# diameter (3-11, odd),        threshold (1-200)      #
###########################################

function VD_SmartSmoother(clip clip, int "diameter", int "threshold", bool "interlaced")
{
  LoadVirtualdubPlugin("C:\encoding"+"\smooth.vdf", "_VD_SmartSmoother")
  return clip._VD_SmartSmoother(default(diameter,5), default(threshold,25),
    \  default(interlaced,false)?1:0)
}

I like Smart Smoother a lot! It seems reasonably fast too. Anyone else use that one- or anyone know of a better noise filter for really strong smoothing?

thx,
ren

el_mero_zooter 03-20-2003 01:42 PM

ive heard of peach, (smoother) hiq, guava


cant recall the exact url's so here's a quick post on google's find.
http://students.washington.edu/ldubb...h_Smoother.htm
http://www.spd.eee.strath.ac.uk/user...deo_noise.html
http://cultact-server.novi.dk/kpo/av...th_hiq_as.html
http://students.washington.edu/ldubb...Guava_Comb.htm


hope they help. I'm very fortunate I hardly have to clean up my caps.

ztr

rendalunit 03-20-2003 02:05 PM

hey zTr,

Thanks for those links. Looks like HiQ is the one I need to try next 8) It's cpu optimized too 8) 8)

ren

el_mero_zooter 03-20-2003 02:45 PM

no problemo..

ztr


how's califas these days, anyway,,,

(it's not san hose, its san jose) :lol: :lol:

jamesp 03-20-2003 06:45 PM

Re: super noisey caps
 
For super noisey captures - PixeDust (or even golddust) combined with TemporalCleaner imho are the absolute best!

However, they are very slow! I've just tried Convolution3d (preset="animeBQ") with temporalcleaner and the results were very good and a lot faster. worth a try.

Peach has some very nasty bugs in it. It has a habit of leaving object stationary when they should be slowly moving. Sometimes mouths son't even look like they open whilst people talk.

Jim


Quote:

Originally Posted by rendalunit
I have some sort of interference that causes darkish horizontal lines in my captures. I have to use very heavy smoothing in my caps and the best spatial smoother I've found to do this is Smart Smoother. Here's the script I'm using
Code:

#==============================================#
# -= AviSynth script by MovieStacker v1.1.1 =- #
#==============================================#

import("c:\encoding\functions.h")

AviSource("D:\CAPTURE.AVI",false)
trim(445,161651)
FieldDeinterlace()
BicubicResize(320, 208, 1/3, 1/3, 0, 6, 352, 468)
ConvertToRGB()
VD_SmartSmoother(5,125,false)
ConvertToYUY2()
BlockBuster(method="noise", detail_max=100, variance=2, seed=1)
AddBorders(16, 16, 16, 16)
LegalClip()

###########################################
# Smart Smoother by Donald Graft, v1.1          #
#                                          #
# diameter (3-11, odd),        threshold (1-200)      #
###########################################

function VD_SmartSmoother(clip clip, int "diameter", int "threshold", bool "interlaced")
{
  LoadVirtualdubPlugin("C:\encoding"+"\smooth.vdf", "_VD_SmartSmoother")
  return clip._VD_SmartSmoother(default(diameter,5), default(threshold,25),
    \  default(interlaced,false)?1:0)
}

I like Smart Smoother a lot! It seems reasonably fast too. Anyone else use that one- or anyone know of a better noise filter for really strong smoothing?

thx,
ren


GFR 03-21-2003 06:18 AM

If the noise is periodic bars at a given frequency you could try the Wavelet NR for VDub.


All times are GMT -5. The time now is 05:07 PM  —  vBulletin © Jelsoft Enterprises Ltd

Site design, images and content © 2002-2024 The Digital FAQ, www.digitalFAQ.com
Forum Software by vBulletin · Copyright © 2024 Jelsoft Enterprises Ltd.