digitalFAQ.com Forums [Archives]

digitalFAQ.com Forums [Archives] (http://www.digitalfaq.com/archives/)
-   Avisynth Scripting (http://www.digitalfaq.com/archives/avisynth/)
-   -   SansGrip Filters: Nomosmooth (http://www.digitalfaq.com/archives/avisynth/1564-sansgrip-filters-nomosmooth.html)

edmund 11-13-2002 05:38 PM

nomosmooth
 
hey where can i get this dll file from??? :D

SansGrip 11-13-2002 05:40 PM

Re: nomosmooth
 
Quote:

Originally Posted by edmund
hey where can i get this dll file from??? :D

See my sig ;).

SansGrip 11-13-2002 10:49 PM

While watching The Amazing Race I had a very good idea to improve motion detection: temporal smooth before the detector runs, instead of after. This way you eliminate noise first and can use a lower motion_threshold before getting false hits.

Some brief experiments show I can drop motion_threshold down to 30 before I get a similar number of false hits as before at 40. It might be the case that 30 is too sensitive, and that spatial smoothing would occur in areas where motion is not pronounced enough.

Anyway, that's the status right now: I'm trying to figure out an efficient way of temporally smoothing before detection. In theory it shouldn't be too much slower than the old method.

kwag 11-13-2002 10:53 PM

Hi SansGrip,

Would this imply a change on your default settings on the NoMoSmooth filter?

-kwag

SansGrip 11-13-2002 11:51 PM

Quote:

Originally Posted by kwag
Would this imply a change on your default settings on the NoMoSmooth filter?

I'm not sure. I'll think about defaults when the code works ;).

SansGrip 11-16-2002 04:29 PM

New version 0.1a
 
Here's NoMoSmooth 0.1a for y'all to try, as well as the source for y'all to look at should y'all so desire.

It's a total rewrite with a number of algorithmic improvements, so it should now be faster. Brief tests indicate it might even be slightly quicker than Convolution3D(preset="movieHQ"), at least on my system.

I added a simplistic "noise detector" which seems to help reduce temporal smoothing of important and very-noticible-if-missing details such as in skin tones.

This is the first official release, though I'm still classifying it as alpha until it gets more testing and I get more feedback.

Hope this works as good for y'all as it does for me ;).

SansGrip 11-16-2002 04:34 PM

Quote:

Originally Posted by kwag
Would this imply a change on your default settings on the NoMoSmooth filter?

In the end I didn't keep this change to the motion detector, since tests revealed it was both 2-3 times slower and destroyed slightly more details than the old version.

Some of the defaults did change for 0.1:

motion_threshold=40
temporal_radius=1
temporal_threshold=6
spatial_radius=1
spatial_threshold=3

These seem fairly suitable for relatively clean DVD sources.

kwag 11-16-2002 04:59 PM

Hi SansGrip,

Thanks :D
Giving it a try right now.

-kwag

SansGrip 11-16-2002 06:29 PM

Quote:

Originally Posted by kwag
Giving it a try right now.

Just got a bug report on Doom9 that it crashes if height > 462. I'm looking into that now.

kwag 11-16-2002 06:33 PM

Quote:

Originally Posted by SansGrip
Quote:

Originally Posted by kwag
Giving it a try right now.

Just got a bug report on Doom9 that it crashes if height > 462. I'm looking into that now.

I was testing at 352x240 with the LBR. No problems there.

-kwag

SansGrip 11-16-2002 07:14 PM

I just uploaded the bugfix and edited my previous message to reflect the new filename.

jorel 11-16-2002 08:28 PM

Quote:

Originally Posted by SansGrip
I just uploaded the bugfix and edited my previous message to reflect the new filename.

hey SansGrip,the link don't work! :(

SansGrip 11-16-2002 09:01 PM

Quote:

Originally Posted by jorel
hey SansGrip,the link don't work! :(

This one works for me...?

jorel 11-17-2002 01:58 AM

Quote:

Originally Posted by SansGrip
Quote:

Originally Posted by jorel
hey SansGrip,the link don't work! :(

This one works for me...?

sorry friend,this not work too! :( :(
waiting.......click in every minut....no work.

kwag 11-17-2002 02:02 AM

Quote:

Originally Posted by jorel
Quote:

Originally Posted by SansGrip
Quote:

Originally Posted by jorel
hey SansGrip,the link don't work! :(

This one works for me...?

sorry friend,this not work too! :( :(
waiting.......click in every minut....no work.

Hi jorel,

It works for me. Maybe the route to SansGrip from your provider is down. Go here: http://www.webwarper.net and from there, access his link. It's a web based anonymous proxy ;)

-kwag

jorel 11-17-2002 02:19 AM

Quote:

Originally Posted by kwag
Quote:

Originally Posted by jorel
Quote:

Originally Posted by SansGrip
Quote:

Originally Posted by jorel
hey SansGrip,the link don't work! :(

This one works for me...?

sorry friend,this not work too! :( :(
waiting.......click in every minut....no work.

Hi jorel,

It works for me. Maybe the route to SansGrip from your provider is down. Go here: http://www.webwarper.net and from there, access his link. It's a web based anonymous proxy ;)


i am in the page,but can't download.(i see all but nothing came)

:cry: :cry:
-kwag


black prince 11-18-2002 05:57 PM

Hi SansGrip,

SansGrip wrote:
Quote:

SansGrip Joined: 09 Nov 2002
Posts: 59
Location: Ontario, Canada
Posted: Sat Nov 16, 2002 5:34 pm Post subject:

--------------------------------------------------------------------------------

kwag wrote:
Would this imply a change on your default settings on the NoMoSmooth filter?


In the end I didn't keep this change to the motion detector, since tests revealed it was both 2-3 times slower and destroyed slightly more details than the old version.

Some of the defaults did change for 0.1:

motion_threshold=40
temporal_radius=1
temporal_threshold=6
spatial_radius=1
spatial_threshold=3

These seem fairly suitable for relatively clean DVD sources.
_________________
Regards,
SansGrip

Are these the default settings for NoMoSmooth() or should we use
NoMoSmooth(40,1,6,1,3) :?: NoMoSmooth is very slow. My encode
went from 6hrs to 17hrs. Is this due to the old default settings :?:

Thanks

-black prince

SansGrip 11-18-2002 06:03 PM

Quote:

Originally Posted by black_prince
Are these the default settings for NoMoSmooth()

Yep, those are the values used if you don't specify any parameters.

Quote:

Originally Posted by black_prince
NoMoSmooth is very slow. My encode
went from 6hrs to 17hrs. Is this due to the old default settings :?:

You might find the new defaults a little faster (because of the lower radii), but it is very slow. You might find FluxSmooth performs better because it's simpler, but neither of them have any assembler/MMX/SSE optimizations yet, mainly because I need to learn it first :).

black prince 11-19-2002 12:12 AM

Hi SansGrip,

Kwag uses both NoMoSmooth and FluxSmooth. Is this the best way
or should I replace flux with NoMo. It's getting confusing and changes
are comming quicker than I can keep up with. :!: I changed my
avs scripts more than 15 times with NoMo, flux and blockbuster and
I'm still not sure what's the latest and the best settings :?: I'm
going to wait awhile until the testing settles down and there are
some final settings to work with. :)

-black prince

SansGrip 11-19-2002 12:41 AM

Quote:

Originally Posted by black prince
Kwag uses both NoMoSmooth and FluxSmooth. Is this the best way or should I replace flux with NoMo.

Technically Flux is (sort of) NoMo without motion detection. I'd have to think about how they would interact with each other.

Quote:

Originally Posted by black prince
I'm going to wait awhile until the testing settles down and there are some final settings to work with. :)

Is anything ever final in this hobby? ;)


All times are GMT -5. The time now is 12:21 AM  —  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.