HomeSort by relevance Sort by last modified time
    Searched refs:cvRect (Results 1 - 25 of 39) sorted by null

1 2

  /external/opencv/cvaux/src/
_cvfacedetection.h 136 inline MouthFaceTemplate(long lNumber,CvRect rect,double dEyeWidth,double dEyeHeight,double dDistanceBetweenEye,double dDistanceEyeAboveMouth);
141 inline MouthFaceTemplate::MouthFaceTemplate(long lNumber,CvRect rect,double dEyeWidth,double dEyeHeight,
145 CvRect MouthRect = rect;
148 CvRect LeftEyeRect = cvRect(cvRound(rect.x - (dEyeWidth + dDistanceBetweenEye/(double)2 - (double)rect.width/(double)2)),
153 CvRect RightEyeRect = cvRect(cvRound(rect.x + (double)rect.width/(double)2 + dDistanceBetweenEye/(double)2),
158 // CvRect NoseRect = cvRect(cvRound(rect.x + (double)rect.width/(double)4),
163 CvRect CheenRect = cvRect(rect.x,rect.y + 3*rect.height/2,rect.width,rect.height)
    [all...]
cvfacedetection.cpp 308 CvRect * lpRect1 = NULL;
313 CvRect rect = pRect->r;
332 lpRect1 = new CvRect();
337 lpRect1 = new CvRect();
378 CvRect * lpRect1 = NULL;
381 lpFaceTemplate1 = new BoostingFaceTemplate(3,cvRect(0,0,FaceImage->width,FaceImage->height));
383 lpFaceTemplate1 = new BoostingFaceTemplate(3,cvRect(FaceImage->roi->xOffset,FaceImage->roi->yOffset,
395 lpRect1 = new CvRect();
400 lpRect1 = new CvRect();
cvlevmarprojbandle.cpp 958 cvGetSubRect(points4D,&point4D,cvRect(currPoint,0,1,4));
    [all...]
cvtrifocal.cpp 255 cvGetSubRect(points[i],&tmpPoints,cvRect(2,0,4,2));
329 cvGetSubRect(&resFundReduceCoef, &fundCoefs, cvRect(0,currSol,5,1));
376 cvGetSubRect(projMatrs[currCamera],&tmpSubRes,cvRect(0,currSol*3,4,3));
395 cvGetSubRect(points4D,tmpSubRes,cvRect(0,currSol*4,6,4));
936 cvGetSubArr(&tmpProjMatr[0],&proj6[0],cvRect(0,currProj*3,4,3));
937 cvGetSubArr(&tmpProjMatr[1],&proj6[1],cvRect(0,currProj*3,4,3));
938 cvGetSubArr(&tmpProjMatr[2],&proj6[2],cvRect(0,currProj*3,4,3));
    [all...]
  /external/opencv3/apps/traincascade/
lbpfeatures.cpp 49 rect = cvRect(0, 0, 0, 0);
54 Rect tr = rect = cvRect(x, y, _blockWidth, _blockHeight);
  /external/opencv/cv/src/
cvtemplmatch.cpp 163 dst = cvGetSubRect( dft_templ, &dstub, cvRect(0,yofs,templ->cols,templ->rows));
179 cvGetSubRect( dft_templ, dst, cvRect(templ->cols, yofs,
183 cvGetSubRect( dft_templ, dst, cvRect(0,yofs,dftsize.width,dftsize.height) );
221 src = cvGetSubRect( img, &sstub, cvRect(x1,y1,x2-x1,y2-y1) );
223 cvRect(0,0,isz.width,isz.height) );
228 cvRect( x1 - x0, y1 - y0, x2 - x1, y2 - y1 ));
248 cvGetSubRect( _dft_img, dst, cvRect(isz.width, 0,
255 cvRect(0,(templ_cn>1?yofs:0),dftsize.width,dftsize.height) );
260 src = cvGetSubRect( _dft_img, &sstub, cvRect(0,0,csz.width,csz.height) );
261 dst = cvGetSubRect( corr, &dstub, cvRect(x,y,csz.width,csz.height) )
    [all...]
cvcorner.cpp 324 dx_filter.process( src, Dx, cvRect(0,y,-1,delta), cvPoint(0,0), stage );
325 stripe_size.height = dy_filter.process( src, Dy, cvRect(0,y,-1,delta),
390 cvRect(0,0,-1,stripe_size.height),cvPoint(0,0),stage+CV_ISOLATED_ROI);
625 CvRect roi = cvRect(0,y,size.width,delta);
cvcalibration.cpp     [all...]
cvfundam.cpp     [all...]
cvgeometry.cpp 44 CV_IMPL CvRect
45 cvMaxRect( const CvRect* rect1, const CvRect* rect2 )
49 CvRect max_rect;
82 return cvRect(0,0,0,0);
190 CvRect r = ((CvContour*)contour)->rect;
  /external/opencv3/modules/calib3d/src/
compat_stereo.cpp 62 state->roi1 = state->roi2 = cvRect(0,0,0,0);
111 CvRect cvGetValidDisparityROI( CvRect roi1, CvRect roi2, int minDisparity,
114 return (CvRect)cv::getValidDisparityROI( roi1, roi2, minDisparity,
calibration.cpp     [all...]
  /external/opencv/otherlibs/highgui/
highgui.h 290 CV_INLINE CvRect RectToCvRect( RECT sr );
291 CV_INLINE CvRect RectToCvRect( RECT sr )
294 return cvRect( sr.left, sr.top, sr.right - sr.left, sr.bottom - sr.top );
297 CV_INLINE RECT CvRectToRect( CvRect sr );
298 CV_INLINE RECT CvRectToRect( CvRect sr )
349 int desired_color, CvRect r );
356 cvRect( r.left, r.top, r.right - r.left, r.bottom - r.top ));
  /external/opencv/cxcore/include/
cxcore.hpp 140 CvRect roi() const
142 return !image ? cvRect(0,0,0,0) :
143 !image->roi ? cvRect(0,0,image->width,image->height) :
144 cvRect(image->roi->xOffset,image->roi->yOffset,
150 void set_roi(CvRect roi) { cvSetImageROI(image,roi); }
cxtypes.h 837 /*************************************** CvRect *****************************************/
839 typedef struct CvRect
846 CvRect;
848 CV_INLINE CvRect cvRect( int x, int y, int width, int height )
850 CvRect r;
861 CV_INLINE IplROI cvRectToROI( CvRect rect, int coi )
874 CV_INLINE CvRect cvROIToRect( IplROI roi )
876 return cvRect( roi.xOffset, roi.yOffset, roi.width, roi.height );
    [all...]
  /external/opencv/
cvjni.cpp 388 CvRect tPrev = cvRect(m_faceCropArea.x * scale, m_faceCropArea.y * scale,
433 CvRect *rect = (CvRect*)cvGetSeqElem(rects, i);
504 void storePreviousFace(CvRect* face) {
519 m_faceCropArea = cvRect(startX, startY,
529 jobject rectToAndroidRect(JNIEnv* env, CvRect *rect) {
593 CvRect *face = (CvRect*)cvGetSeqElem(m_facesFound, 0);
613 void highlightFace(IplImage *sourceImage, CvRect *face, double scale = 1.0) {
    [all...]
  /external/opencv/cv/include/
cv.hpp 106 CvRect _src_roi=cvRect(0,0,-1,-1),
  /external/opencv/cvaux/include/
cvaux.h 233 IplImage *img_mask, CvRect *roi);
    [all...]
cvvidsurv.hpp 449 #define CV_BLOB_RECT(pB) cvRect(cvRound(((CvBlob*)(pB))->x-CV_BLOB_RX(pB)),cvRound(((CvBlob*)(pB))->y-CV_BLOB_RY(pB)),cvRound(CV_BLOB_WX(pB)),cvRound(CV_BLOB_WY(pB)))
692 CV_INLINE CvRect cvRectIntersection( const CvRect r1, const CvRect r2 )
694 CvRect r = cvRect( MAX(r1.x, r2.x), MAX(r1.y, r2.y), 0, 0 );
    [all...]
cvmat.hpp 384 explicit CvMAT( const CvMat& mat, CvRect rect ); /* submatrix */
534 CvMAT rect( CvRect rect ) const;
639 CvMAT rect( CvRect rect ) const;
    [all...]
  /external/opencv3/modules/imgproc/test/
test_contours.cpp 160 cvSetImageROI( img, cvRect(1,1,img->width-2,img->height-2) );
test_floodfill.cpp 247 CvRect r = cvRect( 0, 0, -1, -1 );
  /external/opencv3/modules/imgproc/src/
geometry.cpp 44 CV_IMPL CvRect
45 cvMaxRect( const CvRect* rect1, const CvRect* rect2 )
49 CvRect max_rect;
82 return cvRect(0,0,0,0);
  /external/opencv3/modules/core/include/opencv2/core/
types_c.h 776 /*************************************** CvRect *****************************************/
778 typedef struct CvRect
786 CvRect(int _x = 0, int _y = 0, int w = 0, int h = 0): x(_x), y(_y), width(w), height(h) {}
788 CvRect(const cv::Rect_<_Tp>& r): x(cv::saturate_cast<int>(r.x)), y(cv::saturate_cast<int>(r.y)), width(cv::saturate_cast<int>(r.width)), height(cv::saturate_cast<int>(r.height)) {}
793 CvRect;
795 /** constructs CvRect structure. */
796 CV_INLINE CvRect cvRect( int x, int y, int width, int height )
798 CvRect r;
809 CV_INLINE IplROI cvRectToROI( CvRect rect, int coi
    [all...]
  /external/opencv3/modules/calib3d/test/
test_fundam.cpp 168 cvGetSubRect( &_dm1dm2, &_dm1dm2_part, cvRect(0,12,3,9) );
183 cvGetSubRect( &_dRdm1, &_dRdm1_part, cvRect(3,0,9,9) );
186 cvGetSubRect( &_dRdm1, &_dRdm1_part, cvRect(12,0,9,9) );
    [all...]

Completed in 4632 milliseconds

1 2