Home
last modified time | relevance | path

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

/external/opencv3/modules/photo/src/
Dseamless_cloning_impl.cpp241 void Cloning::initVariables(const Mat &destination, const Mat &binaryMask) in initVariables() argument
248 binaryMaskFloat = Mat(binaryMask.size(),CV_32FC1); in initVariables()
249 binaryMaskFloatInverted = Mat(binaryMask.size(),CV_32FC1); in initVariables()
263 void Cloning::computeDerivatives(const Mat& destination, const Mat &patch, const Mat &binaryMask) in computeDerivatives() argument
265 initVariables(destination,binaryMask); in computeDerivatives()
275 erode(binaryMask, binaryMask, Kernel, Point(-1,-1), 3); in computeDerivatives()
277 binaryMask.convertTo(binaryMaskFloat,CV_32FC1,1.0/255.0); in computeDerivatives()
340 void Cloning::normalClone(const Mat &destination, const Mat &patch, const Mat &binaryMask, Mat &clo… in normalClone() argument
347 computeDerivatives(destination,patch,binaryMask); in normalClone()
405 evaluate(destination,binaryMask,cloned); in normalClone()
Dseamless_cloning.hpp63 void initVariables(const cv::Mat &destination, const cv::Mat &binaryMask);
64 …id computeDerivatives(const cv::Mat &destination, const cv::Mat &patch, const cv::Mat &binaryMask);