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

  /external/opencv3/modules/video/src/
camshift.cpp 57 Rect cur_rect = window; local
72 cur_rect = cur_rect & Rect(0, 0, size.width, size.height);
73 if( cur_rect == Rect() )
75 cur_rect.x = size.width/2;
76 cur_rect.y = size.height/2;
78 cur_rect.width = std::max(cur_rect.width, 1);
79 cur_rect.height = std::max(cur_rect.height, 1)
    [all...]
  /external/opencv/cv/src/
cvcamshift.cpp 68 CvRect cur_rect = windowIn; local
100 CV_CALL( cvGetSubRect( mat, &cur_win, cur_rect ));
111 nx = cur_rect.x + dx;
112 ny = cur_rect.y + dy;
116 else if( nx + cur_rect.width > mat->cols )
117 nx = mat->cols - cur_rect.width;
121 else if( ny + cur_rect.height > mat->rows )
122 ny = mat->rows - cur_rect.height;
124 dx = nx - cur_rect.x;
125 dy = ny - cur_rect.y
    [all...]
cvpyrsegmentation.cpp 114 static void icvMaxRoi( _CvRect16u *max_rect, _CvRect16u* cur_rect );
    [all...]

Completed in 659 milliseconds