HomeSort by relevance Sort by last modified time
    Searched defs:outImg (Results 1 - 3 of 3) sorted by null

  /external/opencv3/modules/features2d/src/
draw.cpp 128 Mat outImg;
133 outImg = _outImg.getMat();
134 if( size.width > outImg.cols || size.height > outImg.rows )
135 CV_Error( Error::StsBadSize, "outImg has size less than need to draw img1 and img2 together" );
136 outImg1 = outImg( Rect(0, 0, img1size.width, img1size.height) );
137 outImg2 = outImg( Rect(img1size.width, 0, img2size.width, img2size.height) );
142 outImg = _outImg.getMat();
143 outImg = Scalar::all(0);
144 outImg1 = outImg( Rect(0, 0, img1size.width, img1size.height) )
    [all...]
  /external/opencv3/modules/java/src/
features2d.cpp 334 // void drawMatches(Mat img1, vector_KeyPoint keypoints1, Mat img2, vector_KeyPoint keypoints2, vector_DMatch matches1to2, Mat outImg, Scalar matchColor = Scalar::all(-1), Scalar singlePointColor = Scalar::all(-1), vector_char matchesMask = std::vector<char>(), int flags = 0)
359 Mat& outImg = *((Mat*)outImg_nativeObj);
362 cv::drawMatches( img1, keypoints1, img2, keypoints2, matches1to2, outImg, matchColor, singlePointColor, matchesMask, (int)flags );
393 Mat& outImg = *((Mat*)outImg_nativeObj);
394 cv::drawMatches( img1, keypoints1, img2, keypoints2, matches1to2, outImg );
407 // void drawMatches(Mat img1, vector_KeyPoint keypoints1, Mat img2, vector_KeyPoint keypoints2, vector_vector_DMatch matches1to2, Mat outImg, Scalar matchColor = Scalar::all(-1), Scalar singlePointColor = Scalar::all(-1), vector_vector_char matchesMask = std::vector<std::vector<char> >(), int flags = 0)
432 Mat& outImg = *((Mat*)outImg_nativeObj);
435 cv::drawMatches( img1, keypoints1, img2, keypoints2, matches1to2, outImg, matchColor, singlePointColor, matchesMask, (int)flags );
466 Mat& outImg = *((Mat*)outImg_nativeObj);
467 cv::drawMatches( img1, keypoints1, img2, keypoints2, matches1to2, outImg );
    [all...]
  /cts/apps/CtsVerifier/libs/
opencv3-android.jar 

Completed in 3415 milliseconds