pixelshift: Added green 7x7 correction grid

This commit is contained in:
heckflosse
2016-12-05 20:39:28 +01:00
parent 755a43f4ac
commit 98b405368f
4 changed files with 76 additions and 1 deletions

View File

@@ -80,6 +80,12 @@ inline const _Tp& max(const _Tp& a, const _Tp& b, const _Tp& c, const _Tp& d, co
return max(max(a,b,c),std::max(d,e));
}
template<typename _Tp>
inline const _Tp& max(const _Tp& a, const _Tp& b, const _Tp& c, const _Tp& d, const _Tp& e, const _Tp& f, const _Tp& g)
{
return max(max(a,b,c,d),max(e,f,g));
}
template<typename _Tp>
inline _Tp intp(_Tp a, _Tp b, _Tp c)