OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:sort_buf
(Results
1 - 2
of
2
) sorted by null
/external/opencv/ml/src/
mlknearest.cpp
215
CvMat* _dist, Cv32suf*
sort_buf
) const
242
sort_buf
[j].i = nr[j].i;
248
if(
sort_buf
[j1].i >
sort_buf
[j1+1].i )
251
CV_SWAP(
sort_buf
[j1].i,
sort_buf
[j1+1].i, t );
260
if( j == k1 ||
sort_buf
[j].i !=
sort_buf
[j-1].i )
266
best_val.i =
sort_buf
[j-1].i;
381
Cv32suf*
sort_buf
= (Cv32suf*)(dist + blk_count*k)
local
[
all
...]
/external/opencv/cv/src/
cvhough.cpp
89
int *
sort_buf
=0;
local
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;
local
978
CV_CALL(
sort_buf
= (int*)cvAlloc( MAX(center_count,nz_count)*sizeof(
sort_buf
[0]) ));
979
cvCvtSeqToArray( centers,
sort_buf
);
[
all
...]
Completed in 28 milliseconds