Home
last modified time | relevance | path

Searched refs:szCurLayer (Results 1 – 2 of 2) sorted by relevance

/external/opencv3/modules/cudalegacy/src/
Dimage_pyramid.cpp87 Size szCurLayer(szLastLayer.width / 2, szLastLayer.height / 2); in ImagePyramidImpl() local
89 if (szCurLayer.width == 0 || szCurLayer.height == 0) in ImagePyramidImpl()
92 ensureSizeIsEnough(szCurLayer, img.type(), pyramid_[i]); in ImagePyramidImpl()
99 szLastLayer = szCurLayer; in ImagePyramidImpl()
/external/opencv3/modules/cudalegacy/src/cuda/
DNCVPyramid.cu391 NcvSize32u szCurLayer(szLastLayer.width / 2, szLastLayer.height / 2);
392 if (szCurLayer.width == 0 || szCurLayer.height == 0)
397 this->pyramid.push_back(new NCVMatrixAlloc<T>(alloc, szCurLayer.width, szCurLayer.height));
410 dim3 gDim(divUp(szCurLayer.width, bDim.x), divUp(szCurLayer.height, bDim.y));
415 szCurLayer);
426 for (Ncv32u i=0; i<szCurLayer.height; i++)
428 for (Ncv32u j=0; j<szCurLayer.width; j++)
443 for (Ncv32u i=0; i<szCurLayer.height; i++)
445 for (Ncv32u j=0; j<szCurLayer.width; j++)
458 szLastLayer = szCurLayer;