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

  /external/opencv3/modules/java/src/
objdetect+Objdetect.java 22 // C++: void groupRectangles(vector_Rect& rectList, vector_int& weights, int groupThreshold, double eps = 0.2)
25 //javadoc: groupRectangles(rectList, weights, groupThreshold, eps)
26 public static void groupRectangles(MatOfRect rectList, MatOfInt weights, int groupThreshold, double eps)
35 //javadoc: groupRectangles(rectList, weights, groupThreshold)
36 public static void groupRectangles(MatOfRect rectList, MatOfInt weights, int groupThreshold)
48 // C++: void groupRectangles(vector_Rect& rectList, vector_int& weights, int groupThreshold, double eps = 0.2)
  /external/opencv3/modules/cudalegacy/src/
NCV.cpp 738 static void groupRectangles(std::vector<NcvRect32u> &hypotheses, int groupThreshold, double eps, std::vector<Ncv32u> *weights)
754 cv::groupRectangles(rects, weights_int, groupThreshold, eps);
758 cv::groupRectangles(rects, groupThreshold, eps);
792 groupRectangles(rects, minNeighbors, intersectEps, &weights);
796 groupRectangles(rects, minNeighbors, intersectEps, NULL);
  /external/opencv3/modules/objdetect/src/
cascadedetect.cpp 63 void groupRectangles(std::vector<Rect>& rectList, int groupThreshold, double eps,
364 void groupRectangles(std::vector<Rect>& rectList, int groupThreshold, double eps)
366 groupRectangles(rectList, groupThreshold, eps, 0, 0);
369 void groupRectangles(std::vector<Rect>& rectList, std::vector<int>& weights, int groupThreshold, double eps)
371 groupRectangles(rectList, groupThreshold, eps, &weights, 0);
374 void groupRectangles(std::vector<Rect>& rectList, std::vector<int>& rejectLevels,
377 groupRectangles(rectList, groupThreshold, eps, &rejectLevels, &levelWeights);
    [all...]
hog.cpp     [all...]
  /cts/apps/CtsVerifier/libs/
opencv3-android.jar 

Completed in 89 milliseconds