Is there some filter or other way to make other filters apply to only portion of image frame not the entire image?
+ Reply to Thread
Results 1 to 6 of 6
-
-
I don't use VDub filters, but AviSynth filters within VDub. It's easy enough to do in AviSynth. For example:
A=Last
B=ReplaceFramesMC(15005,4)
B=B.Crop(500,0,0,-200)
Overlay(A,B,500,0)
For filtering where the filter itself doesn't define the frames to be filtered:
A=Last
B=A.FreezeFrame(35605,35609,35605)###Or other filter
B=B.Crop(550,400,0,0)
C=Overlay(A,B,550,400)
ReplaceFramesSimple(A,C,Mappings="[35605 35609] ")
You crop down to the area to be filtered. ReplaceFramesSimple defines to which frames the filter is to be applied. You can also do it with a mask where the unfiltered area is in black and the part to be filtered is white.
A=Last
B=A.BadFrames(25601,25602,25603)###or other filter
Mask=ImageSource("Mask.bmp")
Overlay(A,B,0,0,Mask)
I'm sure someone can answer your question about defining parts of a frame to be filtered within VDub, but I suspect the answer is it can't be done. -
Use Avisynth here.
Want my help? Ask here! (not via PM!)
FAQs: Best Blank Discs • Best TBCs • Best VCRs for capture • Restore VHS -
AviSynth is great tool, however i am looking for VDub solution as i spent day's collecting and sorting VDub filters...
Unless VDub filter .vdf can be somehow used with Avisynth, i dont want that solution.
By the way i found that VirtualDub2 has this feature inside the core, once you add Filter and select Blend it has four variables Left, Right, Top, Bottom to draw box to which this filter will apply, this is what i was looking for.
[Attachment 71358 - Click to enlarge] -
In general, the Avisynth filters produce better results and there's way more of them. However, you can use Virtual Dub filters within AviSynth scripts:
http://avisynth.nl/index.php/Plugins#LoadVirtualDubPlugin
Similar Threads
-
VirtualDub2 vs 1.9 for capturing
By thefrog1394 in forum Capturing and VCRReplies: 2Last Post: 1st Feb 2021, 22:17 -
Virtualdub2 and FFmpeg: How do I convert this code to Virtualdub2?
By Guernsey in forum Newbie / General discussionsReplies: 0Last Post: 8th Sep 2020, 04:25 -
Virtualdub2 median filter?
By DiggyDre in forum RestorationReplies: 4Last Post: 2nd Jan 2020, 20:05 -
How to apply a filter to only one part of a video.
By Fraugster in forum EditingReplies: 26Last Post: 13th Sep 2019, 13:14 -
VirtualDub2 Exporting Image Sequence
By MFZ in forum Video ConversionReplies: 10Last Post: 30th Aug 2018, 07:46