HomeSort by relevance Sort by last modified time
    Searched refs:sortedIndices (Results 1 - 3 of 3) sorted by null

  /external/opencv3/apps/traincascade/
boost.h 42 const float** ordValues, const int** sortedIndices, int* sampleIndicesBuf );
boost.cpp 742 const float** ordValues, const int** sortedIndices, int* sampleIndicesBuf )
750 *sortedIndices = buf->data.i + n->buf_idx*get_length_subbuf() + (size_t)vi*sample_count + n->offset;
758 *sortedIndices = sortedIndicesBuf;
765 int idx = (*sortedIndices)[i];
774 int idx = (*sortedIndices)[i];
804 *sortedIndices = sortedIndicesBuf;
    [all...]
  /external/opencv3/modules/calib3d/src/
circlesgrid.cpp 206 Mat sortedIndices;
207 sortIdx(anglesMat, sortedIndices, SORT_EVERY_COLUMN + SORT_DESCENDING);
208 CV_Assert(sortedIndices.type() == CV_32SC1);
209 CV_Assert(sortedIndices.cols == 1);
212 cv::sort(sortedIndices.rowRange(0, cornersCount), cornersIndices, SORT_EVERY_COLUMN + SORT_ASCENDING);
    [all...]

Completed in 2388 milliseconds