HomeSort by relevance Sort by last modified time
    Searched refs:groupRectangles (Results 1 - 10 of 10) 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)
objdetect.cpp     [all...]
  /external/opencv3/modules/cudaobjdetect/perf/
perf_objdetect.cpp 121 cv::groupRectangles(gpu_rects, 3, 0.2);
159 cv::groupRectangles(gpu_rects, 3, 0.2);
  /external/opencv3/modules/objdetect/include/opencv2/
objdetect.hpp 151 CV_EXPORTS void groupRectangles(std::vector<Rect>& rectList, int groupThreshold, double eps = 0.2);
153 CV_EXPORTS_W void groupRectangles(CV_IN_OUT std::vector<Rect>& rectList, CV_OUT std::vector<int>& weights,
156 CV_EXPORTS void groupRectangles(std::vector<Rect>& rectList, int groupThreshold,
159 CV_EXPORTS void groupRectangles(std::vector<Rect>& rectList, std::vector<int>& rejectLevels,
453 void groupRectangles(std::vector<cv::Rect>& rectList, std::vector<double>& weights, int groupThreshold, double eps) const;
  /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...]
haar.cpp     [all...]
hog.cpp     [all...]
  /cts/apps/CtsVerifier/libs/
opencv3-android.jar 
  /external/opencv3/modules/cudaobjdetect/src/
hog.cpp 434 groupRectangles(found_locations, group_threshold_, 0.2/*magic number copied from CPU version*/);
    [all...]

Completed in 588 milliseconds