Home
last modified time | relevance | path

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

/external/libxcam/modules/ocl/
Dcv_feature_match.cpp81 cv::InputOutputArray debug_img, cv::Size &img0_size) in get_valid_offsets() argument
97 if (corner1[i].x < 0.0f || corner1[i].x > img0_size.width) in get_valid_offsets()
106 … cv::Point end = (cv::Point(corner1[i]) + cv::Point (img0_size.width, 0)) * XCAM_CV_OF_DRAW_SCALE; in get_valid_offsets()
110 XCAM_UNUSED (img0_size); in get_valid_offsets()
123 cv::Size img0_size = image0.size (); in calc_of_match() local
124 XCAM_ASSERT (img0_size.height == image1.rows ()); in calc_of_match()
131 cv::Size size (img0_size.width + img1_size.width, img0_size.height); in calc_of_match()
137 image0.copyTo (umat (cv::Rect(0, 0, img0_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()
144 image0.copyTo (mat (cv::Rect(0, 0, img0_size.width, img0_size.height))); in calc_of_match()
[all …]
Dcv_feature_match.h62 cv::InputOutputArray debug_img, cv::Size &img0_size);
/external/libxcam/modules/soft/
Dcv_capi_feature_match.cpp93 CvArr* image, CvSize &img0_size) in get_valid_offsets() argument
111 if (corner1[i].x < 0.0f || corner1[i].x > img0_size.width) in get_valid_offsets()
120 …cv::line (mat, start, cv::Point(corner1[i].x + img0_size.width, corner1[i].y), cv::Scalar(255), 2); in get_valid_offsets()
123 XCAM_UNUSED (img0_size); in get_valid_offsets()
136 CvSize img0_size = cvSize(((CvMat*)image0)->width, ((CvMat*)image0)->height); in calc_of_match() local
137 XCAM_ASSERT (img0_size.height == ((CvMat*)image1)->height); in calc_of_match()
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()
151 cv::cvarrToMat(image0, true).copyTo (mat (cv::Rect(0, 0, img0_size.width, img0_size.height))); in calc_of_match()
152 …cv::cvarrToMat(image1, true).copyTo (mat (cv::Rect(img0_size.width, 0, img1_size.width, img1_size.… in calc_of_match()
[all …]
Dcv_capi_feature_match.h63 CvArr* out_image, CvSize &img0_size);