Searched defs:mag_buf (Results 1 - 2 of 2) sorted by relevance

/external/opencv/cv/src/
H A Dcvcanny.cpp64 int* mag_buf[3]; local
128 mag_buf[0] = (int*)buffer;
129 mag_buf[1] = mag_buf[0] + size.width + 2;
130 mag_buf[2] = mag_buf[1] + size.width + 2;
131 map = (uchar*)(mag_buf[2] + size.width + 2);
137 memset( mag_buf[0], 0, (size.width+2)*sizeof(int) );
165 int* _mag = mag_buf[(i > 0) + 1] + 1;
212 _mag = mag_buf[
[all...]
/external/opencv3/modules/imgproc/src/
H A Dcanny.cpp337 int* mag_buf[3]; local
338 mag_buf[0] = (int*)(uchar*)buffer;
339 mag_buf[1] = mag_buf[0] + mapstep*cn;
340 mag_buf[2] = mag_buf[1] + mapstep*cn;
349 int* _norm = mag_buf[(i > boundaries.start) - (i == boundaries.start - 1) + 1] + 1;
448 int* _mag = mag_buf[1] + 1; // take the central row
449 ptrdiff_t magstep1 = mag_buf[2] - mag_buf[
711 int* mag_buf[3]; local
[all...]

Completed in 80 milliseconds