HomeSort by relevance Sort by last modified time
    Searched refs:rectList (Results 1 - 13 of 13) 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)
28 Mat rectList_mat = rectList;
35 //javadoc: groupRectangles(rectList, weights, groupThreshold)
36 public static void groupRectangles(MatOfRect rectList, MatOfInt weights, int groupThreshold)
38 Mat rectList_mat = rectList;
48 // C++: void groupRectangles(vector_Rect& rectList, vector_int& weights, int groupThreshold, double eps = 0.2)
objdetect.cpp     [all...]
  /frameworks/native/opengl/tests/hwc/
hwcCommit.cpp 275 uint32_t numOverlays(list<Rectangle>& rectList);
343 list<Rectangle> rectList;
451 rectList.clear();
452 rectList.push_back(rect);
453 measPtr->startDimOverlays = numOverlays(rectList);
641 list<Rectangle> rectList;
655 rectList.push_back(rect);
657 if (rectList.size() >= numRects) { break; }
659 if (rectList.size() >= numRects) { break; }
662 uint32_t num = numOverlays(rectList);
    [all...]
  /frameworks/base/libs/hwui/
ClipArea.h 120 ClipRectList(const RectangleList& rectList)
122 , rectList(rectList) {}
123 RectangleList rectList;
BakedOpRenderer.cpp 244 LOG_ALWAYS_FATAL_IF(clip->mode != ClipMode::RectangleList, "can't rectlist clip without rectlist");
245 auto&& rectList = reinterpret_cast<const ClipRectList*>(clip)->rectList;
246 int quadCount = rectList.getTransformedRectanglesCount();
250 const TransformedRectangle& tr(rectList.getTransformedRectangle(i));
274 setupStencilQuads(rectangleVertices, rectList.getTransformedRectanglesCount());
331 auto&& rectList = reinterpret_cast<const ClipRectList*>(clip)->rectList;
332 incrementThreshold = rectList.getTransformedRectanglesCount()
    [all...]
ClipArea.cpp 396 return reinterpret_cast<const ClipRectList*>(scb)->rectList;
488 auto&& rectList = rectListClip->rectList;
490 rectList.set(mClipRect, Matrix4::identity());
494 rectList.intersectWith(recordedClip->rect, recordedClipTransform);
501 rectList.intersectWith(tr.getBounds(), totalTransform);
504 rectListClip->rect = rectList.calculateBounds();
518 auto&& rectList = getRectList(clip);
519 for (int i = 0; i < rectList.getTransformedRectanglesCount(); i++) {
520 auto&& tr = rectList.getTransformedRectangle(i)
    [all...]
  /external/opencv3/modules/objdetect/include/opencv2/
objdetect.hpp 138 @param rectList Input/output vector of rectangles. Output vector includes retained and grouped
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,
162 CV_EXPORTS void groupRectangles_meanshift(std::vector<Rect>& rectList, std::vector<double>& foundWeights,
453 void groupRectangles(std::vector<cv::Rect>& rectList, std::vector<double>& weights, int groupThreshold, double eps) const;
  /external/opencv3/modules/objdetect/src/
cascadedetect.cpp 63 void groupRectangles(std::vector<Rect>& rectList, int groupThreshold, double eps,
66 if( groupThreshold <= 0 || rectList.empty() )
70 size_t i, sz = rectList.size();
79 int nclasses = partition(rectList, labels, SimilarRects(eps));
89 rrects[cls].x += rectList[i].x;
90 rrects[cls].y += rectList[i].y;
91 rrects[cls].width += rectList[i].width;
92 rrects[cls].height += rectList[i].height;
125 rectList.clear();
164 rectList.push_back(r1)
    [all...]
haar.cpp     [all...]
hog.cpp     [all...]
  /frameworks/base/libs/hwui/tests/unit/
ClipAreaTests.cpp 151 EXPECT_EQ(2, clipRectList->rectList.getTransformedRectanglesCount());
229 EXPECT_EQ(2, clipRectList->rectList.getTransformedRectanglesCount());
  /cts/hostsidetests/services/activitymanager/src/android/server/cts/
WindowManagerState.java 485 static void extractMultipleBounds(Matcher matcher, int groupIndex, Rectangle... rectList) {
486 for (Rectangle rect : rectList) {
  /cts/apps/CtsVerifier/libs/
opencv3-android.jar 

Completed in 403 milliseconds