I can't remember which function does this, but I'm trying to mask my edges during filtration.
Anyone can lead me to the right path on this one?
THanks
+ Reply to Thread
Results 1 to 9 of 9
-
-
masktool: EdgeMask()
mt_masktools: mt_edge()Last edited by jagabo; 22nd Nov 2013 at 22:47.
-
Thanks. I've tried this before and it just shows a green/black flashy screen. I once became familiar with this function and just forgot. Can you please post a sample? For instance, converting the image to grayscale but protecting the lines (just so I can see how it works).
Thanks. -
How to use mt_edge() to make a crude spacial noise reduction filter that retains sharp edges:
Code:edges = mt_edge() # build an edge mask mt_merge(blur(1.0), last, edges) # overlay a blurred image except at sharp edges
-
Thanks. Heaven forbid the stupid retarded documentation that comes with the function posts samples
-
can you please show me a sample script of how I would apply grayscale to the image, but protect a portion around the edges from it? So I can see a bit of the color and have an idea how to work the script
-
It's easier to use Overlay() for that purpose:
Code:edges = mt_edge() # build an edge mask Overlay(GreyScale(last), last, mask=edges) # overlay a grey image except at sharp edges
Code:edges = mt_edge().mt_expand().Blur(1.0) # build an edge mask
-
Ok, I'll try this when I get home.
I don't hear from Sanlyn these days.
Similar Threads
-
Good filter for Chroma bleed?
By brassplyer in forum EditingReplies: 1Last Post: 10th Dec 2012, 21:38 -
Good Denoiser filter for Anime... ?!
By SB4 in forum RestorationReplies: 12Last Post: 22nd Aug 2012, 12:10 -
H264 in-loop deblocking filter, a good thing?
By deadrats in forum Video ConversionReplies: 1Last Post: 12th Feb 2012, 20:48 -
Looking for a filter to mask out white specs in video...
By Deter in forum RestorationReplies: 8Last Post: 2nd Aug 2010, 13:36 -
Tiffen Soft F/X 3 Glass Filter - is it good?
By buratino in forum Newbie / General discussionsReplies: 1Last Post: 21st Jul 2009, 14:00