Tegra-optimized pyrUp
This commit is contained in:
parent
0403746636
commit
5cbec286fc
@ -437,6 +437,12 @@ void cv::pyrUp( InputArray _src, OutputArray _dst, const Size& _dsz )
|
|||||||
Size dsz = _dsz == Size() ? Size(src.cols*2, src.rows*2) : _dsz;
|
Size dsz = _dsz == Size() ? Size(src.cols*2, src.rows*2) : _dsz;
|
||||||
_dst.create( dsz, src.type() );
|
_dst.create( dsz, src.type() );
|
||||||
Mat dst = _dst.getMat();
|
Mat dst = _dst.getMat();
|
||||||
|
|
||||||
|
#ifdef HAVE_TEGRA_OPTIMIZATION
|
||||||
|
if(tegra::pyrUp(src, dst))
|
||||||
|
return;
|
||||||
|
#endif
|
||||||
|
|
||||||
int depth = src.depth();
|
int depth = src.depth();
|
||||||
PyrFunc func = 0;
|
PyrFunc func = 0;
|
||||||
if( depth == CV_8U )
|
if( depth == CV_8U )
|
||||||
|
Loading…
x
Reference in New Issue
Block a user