Home | History | Annotate | Download | only in src

Lines Matching refs:outImg

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) );
145 outImg2 = outImg( Rect(img1size.width, 0, img2size.width, img2size.height) );
161 Mat _outImg1 = outImg( Rect(0, 0, img1size.width, img1size.height) );
164 Mat _outImg2 = outImg( Rect(img1size.width, 0, img2size.width, img2size.height) );
169 static inline void _drawMatch( InputOutputArray outImg, InputOutputArray outImg1, InputOutputArray outImg2 ,
181 dpt2 = Point2f( std::min(pt2.x+outImg1.size().width, float(outImg.size().width-1)), pt2.y );
183 line( outImg,
191 const std::vector<DMatch>& matches1to2, InputOutputArray outImg,
200 outImg, outImg1, outImg2, singlePointColor, flags );
213 _drawMatch( outImg, outImg1, outImg2, kp1, kp2, matchColor, flags );
220 const std::vector<std::vector<DMatch> >& matches1to2, InputOutputArray outImg,
229 outImg, outImg1, outImg2, singlePointColor, flags );
241 _drawMatch( outImg, outImg1, outImg2, kp1, kp2, matchColor, flags );