Home | History | Annotate | Download | only in src

Lines Matching defs:border

47 icvInitTopBottom( int* temp, int tempstep, CvSize size, int border )
50 for( i = 0; i < border; i++ )
53 int* tbottom = (int*)(temp + (size.height + border*2 - i - 1)*tempstep);
55 for( j = 0; j < size.width + border*2; j++ )
70 const int BORDER = 1;
80 icvInitTopBottom( temp, step, size, BORDER );
86 int* tmp = (int*)(temp + (i+BORDER)*step) + BORDER;
88 for( j = 0; j < BORDER; j++ )
113 int* tmp = (int*)(temp + (i+BORDER)*step) + BORDER;
142 const int BORDER = 2;
153 icvInitTopBottom( temp, step, size, BORDER );
159 int* tmp = (int*)(temp + (i+BORDER)*step) + BORDER;
161 for( j = 0; j < BORDER; j++ )
194 int* tmp = (int*)(temp + (i+BORDER)*step) + BORDER;
232 const int BORDER = 2;
245 icvInitTopBottom( temp, step, size, BORDER );
251 int* tmp = (int*)(temp + (i+BORDER)*step) + BORDER;
254 for( j = 0; j < BORDER; j++ )
328 int* tmp = (int*)(temp + (i+BORDER)*step) + BORDER;
814 int border = maskSize == CV_DIST_MASK_3 ? 1 : 2;
815 CV_CALL( temp = cvCreateMat( size.height + border*2, size.width + border*2, CV_32SC1 ));