03-20-2003, 01:18 PM
|
Free Member
|
|
Join Date: Apr 2002
Location: san jose, Ca
Posts: 1,148
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
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
|
Someday, 12:01 PM
|
|
Site Staff / Ad Manager
|
|
Join Date: Dec 2002
Posts: 42
Thanks: ∞
Thanked 42 Times in 42 Posts
|
|
|
03-20-2003, 01:42 PM
|
Free Member
|
|
Join Date: Apr 2002
Location: T.O. (Da T-Dot)
Posts: 498
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
|
03-20-2003, 02:05 PM
|
Free Member
|
|
Join Date: Apr 2002
Location: san jose, Ca
Posts: 1,148
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
hey zTr,
Thanks for those links. Looks like HiQ is the one I need to try next It's cpu optimized too
ren
|
03-20-2003, 02:45 PM
|
Free Member
|
|
Join Date: Apr 2002
Location: T.O. (Da T-Dot)
Posts: 498
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
no problemo..
ztr
how's califas these days, anyway,,,
(it's not san hose, its san jose)
|
03-20-2003, 06:45 PM
|
Free Member
|
|
Join Date: Jul 2002
Location: Chelmsford, UK
Posts: 130
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
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
|
|
03-21-2003, 06:18 AM
|
Free Member
|
|
Join Date: May 2002
Posts: 438
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
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:33 PM — vBulletin © Jelsoft Enterprises Ltd
|