Home | History | Annotate | Download | only in cuda

Lines Matching refs:curLayer

405         NCVMatrix<T> *curLayer = this->pyramid[i];
413 curLayer->ptr(),
414 curLayer->pitch(),
421 NCVMatrixAlloc<T> h_curLayer(allocCPU, curLayer->width(), curLayer->height());
424 ncvAssertPrintReturn(NCV_SUCCESS == curLayer->copy2D(h_curLayer, curLayer->size(), cuStream), "Validation failure in NCVImagePyramid::ctor", );
451 curLayer->at(j, i) = _average4(p00, p01, p10, p11);
498 const NCVMatrix<T> *curLayer = NULL;
504 curLayer = this->pyramid[i];
506 if (outRoi.width == curLayer->width() && outRoi.height == curLayer->height())
512 if (outRoi.width >= curLayer->width() && outRoi.height >= curLayer->height())
522 lastLayer = curLayer;
586 NcvSize32u szBottomLayer(curLayer->width(), curLayer->height());
589 T bottomPix = _interpBilinear(*curLayer, ptBottomX, ptBottomY);