Home
last modified time | relevance | path

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

/external/libxcam/modules/ocl/
Dcv_feature_match.cpp130 cv::Size img1_size = image1.size (); in calc_of_match() local
131 cv::Size size (img0_size.width + img1_size.width, img0_size.height); in calc_of_match()
138 image1.copyTo (umat (cv::Rect(img0_size.width, 0, img1_size.width, img1_size.height))); in calc_of_match()
145 image1.copyTo (mat (cv::Rect(img0_size.width, 0, img1_size.width, img1_size.height))); in calc_of_match()
/external/libxcam/modules/soft/
Dcv_capi_feature_match.cpp147 CvSize img1_size = cvSize(((CvMat*)image1)->width, ((CvMat*)image1)->height); in calc_of_match() local
149 mat.create (img0_size.height, img0_size.width + img1_size.width, ((CvMat*)image0)->type); in calc_of_match()
150 …debug_image = cvMat (img0_size.height, img0_size.width + img1_size.width, ((CvMat*)image0)->type, … in calc_of_match()
152 …rToMat(image1, true).copyTo (mat (cv::Rect(img0_size.width, 0, img1_size.width, img1_size.height))… in calc_of_match()