OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:mapstep
(Results
1 - 2
of
2
) sorted by null
/external/opencv/cv/src/
cvcanny.cpp
66
int
mapstep
, maxsize;
local
132
mapstep
= size.width + 2;
138
memset( map, 1,
mapstep
);
139
memset( map +
mapstep
*(size.height + 1), 1,
mapstep
);
209
_map = map +
mapstep
*i + 1;
253
if( m > high && !prev_flag && _map[j-
mapstep
] != 2 )
267
if( m > high && !prev_flag && _map[j-
mapstep
] != 2 )
282
if( m > high && !prev_flag && _map[j-
mapstep
] != 2 )
325
if( !m[-
mapstep
-1]
[
all
...]
/external/opencv3/modules/imgproc/src/
canny.cpp
261
ptrdiff_t
mapstep
= src.cols + 2;
local
335
AutoBuffer<uchar> buffer(cn *
mapstep
* 3 * sizeof(int));
339
mag_buf[1] = mag_buf[0] +
mapstep
*cn;
340
mag_buf[2] = mag_buf[1] +
mapstep
*cn;
445
uchar* _map = map +
mapstep
*i + 1;
511
// _map[j-
mapstep
] is short-circuited at the start because previous thread is
513
if (!prev_flag && m > high && (i <= boundaries.start+1 || _map[j-
mapstep
] != 2) )
549
if ( (m < map + (boundaries.start + 2) *
mapstep
) || (m >= map + boundaries.end *
mapstep
) )
557
if (!m[-
mapstep
-1]) CANNY_PUSH(m - mapstep - 1)
641
ptrdiff_t
mapstep
= src.cols + 2;
local
708
ptrdiff_t
mapstep
= src.cols + 2;
local
[
all
...]
Completed in 2451 milliseconds