HomeSort by relevance Sort by last modified time
    Searched defs:sort_indices (Results 1 - 2 of 2) sorted by null

  /external/opencv3/modules/imgproc/src/
colormap.cpp 79 std::vector<int> sort_indices = argsort(X_); local
81 Mat X = sortMatrixRowsByIndices(X_,sort_indices);
82 Mat Y = sortMatrixRowsByIndices(Y_,sort_indices);
    [all...]
  /external/opencv3/modules/flann/include/opencv2/flann/
kmeans_index.h 995 int* sort_indices = new int[branching_]; local
997 getCenterOrdering(node, vec, sort_indices);
1000 findExactNN(node->childs[sort_indices[i]],result,vec);
1003 delete[] sort_indices;
1013 void getCenterOrdering(KMeansNodePtr node, const ElementType* q, int* sort_indices)
    [all...]

Completed in 167 milliseconds