Welcome to Doom9's Forum, THE in-place to be for everyone interested in DVD conversion.

Before you start posting please read the forum rules. By posting to this forum you agree to abide by the rules.

 

Go Back   Doom9's Forum > Capturing and Editing Video > Avisynth Usage

 
 
Thread Tools Search this Thread Display Modes
Prev Previous Post   Next Post Next
Old 5th January 2005, 20:40   #14  |  Link
Ark
Aikidoka
 
Ark's Avatar
 
Join Date: Nov 2003
Location: Italy
Posts: 216
Quote:
Originally posted by Didée
Hah, I found an even faster method than this aSharp().aWarpsharp() combo !!!

Try the following:

sharpen(0.2)

W00T!

***

But seriously. A method to *really* do a minimal version of LS was pointed out by kassandro, uses his RemoveGrain filter set, and was named ModerateSharpen():
Code:
#  a function by kassandro.
# (just made "repmode" a parameter / Didée)

function ModerateSharpen(clip input, float amount, int "repmode")
{
	repmode = default(repmode,1)
	sharpened = Sharpen(input, amount)
	return Repair(sharpened, input, mode=repmode)
}
This one should run above realtime without any problems. Practicable "repmode"s are 1 & 2. Maximal "amount" is 1.0, but one should use less, because of the aliasing problem.
I tried it some time ago and for me it's veeeery like an XSharpen without those "dancing" pixels seen in XSharpen used at high values, so it can be a nice candidate for "supersampled" use, from the simplest

Code:
Lanczosresize(x*2,y*2).Moderatesharpen(1.0).Lanczosresize(x,y)
to more the complicted ways *you* can think of .....
__________________
Xvid fan ;)

Last edited by Ark; 5th January 2005 at 22:19.
Ark is offline   Reply With Quote
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 22:57.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2023, vBulletin Solutions Inc.