Topic: SVPFlow Source Code?
From what I know, SVPFlow1 is open-source under GPL license while SVPFlow2 is closed-source. Where can I find the source code of SVPFlow1? I can't find it anywhere.
You are not logged in. Please login or register.
SmoothVideo Project → Using SVP → SVPFlow Source Code?
From what I know, SVPFlow1 is open-source under GPL license while SVPFlow2 is closed-source. Where can I find the source code of SVPFlow1? I can't find it anywhere.
Thank you
Hi Chainik,
in search.cpp line 247
for ( int j = start; j < y_max; j+=2 )
{
CheckMV(mvx, mvy + j);
CheckMV(mvx, mvy + j);
}
should it be look like?
for ( int j = start; j < y_max; j+=2 )
{
CheckMV(mvx, mvy - j);
CheckMV(mvx, mvy + j);
}
is this fixed after 4.0.0.128?
thx
> is this fixed after 4.0.0.128?
nope
in fact this one is from the original MVTools... but I doubt it really breaks anything
Hope it can be fixed in future version, i feel UMH search is slightly smoother.
SmoothVideo Project → Using SVP → SVPFlow Source Code?
Powered by PunBB, supported by Informer Technologies, Inc.