Home
last modified time | relevance | path

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

/external/opencv3/modules/imgproc/src/
Dgrabcut.cpp275 static void calcNWeights( const Mat& img, Mat& leftW, Mat& upleftW, Mat& upW, Mat& uprightW, double… in calcNWeights() argument
279 upleftW.create( img.rows, img.cols, CV_64FC1 ); in calcNWeights()
297 upleftW.at<double>(y,x) = gammaDivSqrt2 * exp(-beta*diff.dot(diff)); in calcNWeights()
300 upleftW.at<double>(y,x) = 0; in calcNWeights()
447 const Mat& leftW, const Mat& upleftW, const Mat& upW, const Mat& uprightW, in constructGCGraph() argument
489 double w = upleftW.at<double>(p); in constructGCGraph()
564 Mat leftW, upleftW, upW, uprightW; in grabCut() local
565 calcNWeights( img, leftW, upleftW, upW, uprightW, beta, gamma ); in grabCut()
572 constructGCGraph(img, mask, bgdGMM, fgdGMM, lambda, leftW, upleftW, upW, uprightW, graph ); in grabCut()