Home | History | Annotate | Download | only in src

Lines Matching defs:sort_buf

89     int *sort_buf=0;
118 CV_CALL( sort_buf = (int*)cvAlloc( sizeof(accum[0]) * numangle * numrho ));
150 sort_buf[total++] = base;
154 icvHoughSortDescent32s( sort_buf, total, accum );
162 int idx = sort_buf[i];
172 cvFree( &sort_buf );
860 int* sort_buf = 0;
978 CV_CALL( sort_buf = (int*)cvAlloc( MAX(center_count,nz_count)*sizeof(sort_buf[0]) ));
979 cvCvtSeqToArray( centers, sort_buf );
981 icvHoughSortDescent32s( sort_buf, center_count, adata );
983 cvSeqPushMulti( centers, sort_buf, center_count );
1021 sort_buf[j] = j;
1025 icvHoughSortDescent32s( sort_buf, nz_count, (int*)ddata );
1027 dist_sum = start_dist = ddata[sort_buf[nz_count-1]];
1030 float d = ddata[sort_buf[j]];
1037 float r_cur = ddata[sort_buf[(j + start_idx)/2]];
1065 cvFree( &sort_buf );