Searched refs:erows (Results 1 – 1 of 1) sorted by relevance
/external/opencv/cv/src/ |
D | cvinpaint.cpp | 712 CV_MAT_ELEM(*image,type,erows-1,j) = value;\ 742 int erows, ecols; in cvInpaint() local 764 erows = input_img->rows + 2; in cvInpaint() 766 CV_CALL( f = cvCreateMat(erows, ecols, CV_8UC1)); in cvInpaint() 767 CV_CALL( t = cvCreateMat(erows, ecols, CV_32FC1)); in cvInpaint() 768 CV_CALL( band = cvCreateMat(erows, ecols, CV_8UC1)); in cvInpaint() 769 CV_CALL( mask = cvCreateMat(erows, ecols, CV_8UC1)); in cvInpaint() 792 CV_CALL( out = cvCreateMat(erows, ecols, CV_8UC1)); in cvInpaint()
|