Developers:
What you think about add in StackHorizontal/StackVertical overlapping (as blocks in FFT3DFilter)
Possible already exist plugin?
PS Excuse me My English, please...
foxyshadis
19th April 2006, 13:54
function filtersplit(clip c, int "i") {
c
i=default(i,1)
sx = m(16,width/2)
sy = m(4,height/2)
s11 = crop(0,0,sx+8,sy+8).runfilter().crop(0,0,-8,-8)
s12 = crop(sx-8,0,0,sy+8).runfilter().crop(8,0,0,-8)
s21 = crop(0,sy-8,sx+8,0).runfilter().crop(0,8,-8,0)
s22 = crop(sx-8,sy-8,0,0).runfilter().crop(8,8,0,0)
stackvertical(stackhorizontal(s11,s12),stackhorizontal(s21,s22))
}
function runfilterx(clip c) {
c
# your filtering here
}
function m(int r, float x) {return(x<16?16:int(round(x/float(r))*r))}
This is a stripped down sort of what I did to tackle that. It's not really the same as what you're asking for, but if you tell us the reason you want it there might be a better solution out there now.
IanB
19th April 2006, 16:00
Layer() and Overlay() can easily provide overlapped stacking. The challange is creating the appropriate alpha masks, but loading a painted image is usually adequate.
MaskTools might be an easier solution.
vBulletin® v3.8.11, Copyright ©2000-2026, vBulletin Solutions Inc.