Lines Matching full:pyramid
210 namespace pyramid
293 namespace pyramid
397 this->pyramid.push_back(new NCVMatrixAlloc<T>(alloc, szCurLayer.width, szCurLayer.height));
398 ncvAssertPrintReturn(((NCVMatrixAlloc<T> *)(this->pyramid[i]))->isMemAllocated(), "NCVImagePyramid::ctor error", );
404 const NCVMatrix<T> *prevLayer = i == 0 ? this->layer0 : this->pyramid[i-1];
405 NCVMatrix<T> *curLayer = this->pyramid[i];
504 curLayer = this->pyramid[i];
508 ncvAssertReturnNcvStat(this->pyramid[i]->copy2D(outImg, NcvSize32u(this->pyramid[i]->width(), this->pyramid[i]->height()), cuStream));