OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:cur_rect
(Results
1 - 2
of
2
) sorted by null
/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
...]
/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
...]
Completed in 812 milliseconds