Lines Matching full:temp
47 icvInitTopBottom( int* temp, int tempstep, CvSize size, int border )
52 int* ttop = (int*)(temp + i*tempstep);
53 int* tbottom = (int*)(temp + (size.height + border*2 - i - 1)*tempstep);
67 icvDistanceTransform_3x3_C1R( const uchar* src, int srcstep, int* temp,
77 step /= sizeof(temp[0]);
80 icvInitTopBottom( temp, step, size, BORDER );
86 int* tmp = (int*)(temp + (i+BORDER)*step) + BORDER;
113 int* tmp = (int*)(temp + (i+BORDER)*step) + BORDER;
139 icvDistanceTransform_5x5_C1R( const uchar* src, int srcstep, int* temp,
150 step /= sizeof(temp[0]);
153 icvInitTopBottom( temp, step, size, BORDER );
159 int* tmp = (int*)(temp + (i+BORDER)*step) + BORDER;
194 int* tmp = (int*)(temp + (i+BORDER)*step) + BORDER;
228 icvDistanceTransformEx_5x5_C1R( const uchar* src, int srcstep, int* temp,
241 step /= sizeof(temp[0]);
245 icvInitTopBottom( temp, step, size, BORDER );
251 int* tmp = (int*)(temp + (i+BORDER)*step) + BORDER;
328 int* tmp = (int*)(temp + (i+BORDER)*step) + BORDER;
605 int* temp, int tempstep,
707 CvMat* temp = 0;
815 CV_CALL( temp = cvCreateMat( size.height + border*2, size.width + border*2, CV_32SC1 ));
823 func( src->data.ptr, src->step, temp->data.i, temp->step,
847 icvDistanceTransformEx_5x5_C1R( src_copy->data.ptr, src_copy->step, temp->data.i, temp->step,
854 cvReleaseMat( &temp );