Searched refs:dst_pyramid (Results 1 – 2 of 2) sorted by relevance
333 CvMat* dst_pyramid[MAX_LEVELS+1]; in cvPyrMeanShiftFiltering() local342 memset( dst_pyramid, 0, sizeof(dst_pyramid) ); in cvPyrMeanShiftFiltering()382 dst_pyramid[0] = dst0; in cvPyrMeanShiftFiltering()387 CV_CALL( dst_pyramid[level] = cvCreateMat( src_pyramid[level]->rows, in cvPyrMeanShiftFiltering()412 CvSize size1 = cvGetMatSize(dst_pyramid[level+1]); in cvPyrMeanShiftFiltering()414 dstep = dst_pyramid[level+1]->step; in cvPyrMeanShiftFiltering()415 dptr = dst_pyramid[level+1]->data.ptr + dstep + cn; in cvPyrMeanShiftFiltering()419 cvPyrUp( dst_pyramid[level+1], dst_pyramid[level] ); in cvPyrMeanShiftFiltering()436 dptr = dst_pyramid[level]->data.ptr; in cvPyrMeanShiftFiltering()437 dstep = dst_pyramid[level]->step; in cvPyrMeanShiftFiltering()[all …]
350 std::vector<cv::Mat> dst_pyramid(max_level+1); in pyrMeanShiftFiltering() local385 dst_pyramid[0] = dst0; in pyrMeanShiftFiltering()390 dst_pyramid[level].create( src_pyramid[level].rows, in pyrMeanShiftFiltering()415 cv::Size size1 = dst_pyramid[level+1].size(); in pyrMeanShiftFiltering()417 dstep = (int)dst_pyramid[level+1].step; in pyrMeanShiftFiltering()418 dptr = dst_pyramid[level+1].ptr() + dstep + cn; in pyrMeanShiftFiltering()422 cv::pyrUp( dst_pyramid[level+1], dst_pyramid[level], dst_pyramid[level].size() ); in pyrMeanShiftFiltering()439 dptr = dst_pyramid[level].ptr(); in pyrMeanShiftFiltering()440 dstep = (int)dst_pyramid[level].step; in pyrMeanShiftFiltering()