OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:dst_pyramid
(Results
1 - 2
of
2
) sorted by null
/external/opencv/cv/src/
cvsegmentation.cpp
333
CvMat*
dst_pyramid
[MAX_LEVELS+1];
local
342
memset(
dst_pyramid
, 0, sizeof(
dst_pyramid
) );
382
dst_pyramid
[0] = dst0;
387
CV_CALL(
dst_pyramid
[level] = cvCreateMat( src_pyramid[level]->rows,
412
CvSize size1 = cvGetMatSize(
dst_pyramid
[level+1]);
414
dstep =
dst_pyramid
[level+1]->step;
415
dptr =
dst_pyramid
[level+1]->data.ptr + dstep + cn;
418
//cvResize(
dst_pyramid
[level+1],
dst_pyramid
[level], CV_INTER_CUBIC )
[
all
...]
/external/opencv3/modules/imgproc/src/
segmentation.cpp
350
std::vector<cv::Mat>
dst_pyramid
(max_level+1);
385
dst_pyramid
[0] = dst0;
390
dst_pyramid
[level].create( src_pyramid[level].rows,
415
cv::Size size1 =
dst_pyramid
[level+1].size();
417
dstep = (int)
dst_pyramid
[level+1].step;
418
dptr =
dst_pyramid
[level+1].ptr() + dstep + cn;
421
//cvResize(
dst_pyramid
[level+1],
dst_pyramid
[level], CV_INTER_CUBIC );
422
cv::pyrUp(
dst_pyramid
[level+1],
dst_pyramid
[level], dst_pyramid[level].size() )
[
all
...]
Completed in 74 milliseconds