Home
last modified time | relevance | path

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

/external/opencv3/modules/features2d/src/
Dbrisk.cpp196 halfsample(const cv::Mat& srcimg, cv::Mat& dstimg);
199 twothirdsample(const cv::Mat& srcimg, cv::Mat& dstimg);
2289 BriskLayer::halfsample(const cv::Mat& srcimg, cv::Mat& dstimg) in halfsample() argument
2292 CV_Assert(srcimg.cols / 2 == dstimg.cols); in halfsample()
2293 CV_Assert(srcimg.rows / 2 == dstimg.rows); in halfsample()
2296 resize(srcimg, dstimg, dstimg.size(), 0, 0, INTER_AREA); in halfsample()
2300 BriskLayer::twothirdsample(const cv::Mat& srcimg, cv::Mat& dstimg) in twothirdsample() argument
2303 CV_Assert((srcimg.cols / 3) * 2 == dstimg.cols); in twothirdsample()
2304 CV_Assert((srcimg.rows / 3) * 2 == dstimg.rows); in twothirdsample()
2306 resize(srcimg, dstimg, dstimg.size(), 0, 0, INTER_AREA); in twothirdsample()