HomeSort by relevance Sort by last modified time
    Searched refs:maxLevel (Results 1 - 25 of 84) sorted by null

1 2 3 4

  /external/skia/bench/
PictureNestingBench.cpp 19 PictureNesting(const char* name, int maxLevel, int maxPictureLevel)
20 : fMaxLevel(maxLevel)
111 PictureNestingRecording(int maxLevel, int maxPictureLevel)
112 : INHERITED("recording", maxLevel, maxPictureLevel) {
138 PictureNestingPlayback(int maxLevel, int maxPictureLevel)
139 : INHERITED("playback", maxLevel, maxPictureLevel) {
  /external/opencv3/modules/java/src/
video+Video.java 65 // C++: int buildOpticalFlowPyramid(Mat img, vector_Mat& pyramid, Size winSize, int maxLevel, bool withDerivatives = true, int pyrBorder = BORDER_REFLECT_101, int derivBorder = BORDER_CONSTANT, bool tryReuseInputImage = true)
68 //javadoc: buildOpticalFlowPyramid(img, pyramid, winSize, maxLevel, withDerivatives, pyrBorder, derivBorder, tryReuseInputImage)
69 public static int buildOpticalFlowPyramid(Mat img, List<Mat> pyramid, Size winSize, int maxLevel, boolean withDerivatives, int pyrBorder, int derivBorder, boolean tryReuseInputImage)
72 int retVal = buildOpticalFlowPyramid_0(img.nativeObj, pyramid_mat.nativeObj, winSize.width, winSize.height, maxLevel, withDerivatives, pyrBorder, derivBorder, tryReuseInputImage);
78 //javadoc: buildOpticalFlowPyramid(img, pyramid, winSize, maxLevel)
79 public static int buildOpticalFlowPyramid(Mat img, List<Mat> pyramid, Size winSize, int maxLevel)
82 int retVal = buildOpticalFlowPyramid_1(img.nativeObj, pyramid_mat.nativeObj, winSize.width, winSize.height, maxLevel);
90 // C++: void calcOpticalFlowPyrLK(Mat prevImg, Mat nextImg, vector_Point2f prevPts, vector_Point2f& nextPts, vector_uchar& status, vector_float& err, Size winSize = Size(21,21), int maxLevel = 3, TermCriteria criteria = TermCriteria(TermCriteria::COUNT+TermCriteria::EPS, 30, 0.01), int flags = 0, double minEigThreshold = 1e-4)
93 //javadoc: calcOpticalFlowPyrLK(prevImg, nextImg, prevPts, nextPts, status, err, winSize, maxLevel, criteria, flags, minEigThreshold)
94 public static void calcOpticalFlowPyrLK(Mat prevImg, Mat nextImg, MatOfPoint2f prevPts, MatOfPoint2f nextPts, MatOfByte status, MatOfFloat err, Size winSize, int maxLevel, TermCriteria criteria, int flags, double minEigThreshold
    [all...]
  /external/opencv3/modules/cudaoptflow/include/opencv2/
cudaoptflow.hpp 167 virtual void setMaxLevel(int maxLevel) = 0;
177 int maxLevel = 3,
194 virtual void setMaxLevel(int maxLevel) = 0;
204 int maxLevel = 3,
  /external/opencv3/modules/video/src/
lkpyramid.hpp 30 int maxLevel;
lkpyramid.cpp 211 maxLevel = _maxLevel;
242 if( level == maxLevel )
744 int cv::buildOpticalFlowPyramid(InputArray _img, OutputArrayOfArrays pyramid, Size winSize, int maxLevel, bool withDerivatives,
751 pyramid.create(1, (maxLevel + 1) * pyrstep, 0 /*type*/, -1, true, 0);
791 for(int level = 0; level <= maxLevel; ++level)
    [all...]
  /external/opencv3/modules/video/test/ocl/
test_optflowpyrlk.cpp 61 int maxLevel;
69 maxLevel = GET_PARAM(1);
95 OCL_OFF(cv::calcOpticalFlowPyrLK(frame0, frame1, pts, cpuNextPts, cpuStatusCPU, cpuErr, winSize, maxLevel, criteria, flags, minEigThreshold));
98 OCL_ON(cv::calcOpticalFlowPyrLK(umatFrame0, umatFrame1, pts, umatNextPts, umatStatus, umatErr, winSize, maxLevel, criteria, flags, minEigThreshold));
  /external/opencv3/modules/cudaoptflow/src/
pyrlk.cpp 74 PyrLKOpticalFlowBase(Size winSize, int maxLevel, int iters, bool useInitialFlow);
92 PyrLKOpticalFlowBase::PyrLKOpticalFlowBase(Size winSize, int maxLevel, int iters, bool useInitialFlow) :
93 winSize_(winSize), maxLevel_(maxLevel), iters_(iters), useInitialFlow_(useInitialFlow)
269 SparsePyrLKOpticalFlowImpl(Size winSize, int maxLevel, int iters, bool useInitialFlow) :
270 PyrLKOpticalFlowBase(winSize, maxLevel, iters, useInitialFlow)
278 virtual void setMaxLevel(int maxLevel) { maxLevel_ = maxLevel; }
306 DensePyrLKOpticalFlowImpl(Size winSize, int maxLevel, int iters, bool useInitialFlow) :
307 PyrLKOpticalFlowBase(winSize, maxLevel, iters, useInitialFlow)
315 virtual void setMaxLevel(int maxLevel) { maxLevel_ = maxLevel;
    [all...]
  /external/opencv3/modules/video/perf/opencl/
perf_optflow_pyrlk.cpp 77 const int maxLevel = 3;
93 cv::calcOpticalFlowPyrLK(uFrame0, uFrame1, pts, uNextPts, uStatus, uErr, winSize, maxLevel, criteria, flags, minEigThreshold);
  /external/webrtc/webrtc/modules/audio_processing/agc/legacy/
analog_agc.c 141 /* |maxLevel| is strictly >= |micVol|, so this condition should be
143 assert(stt->maxLevel > stt->maxAnalog);
148 tmp16 = (int16_t)(stt->maxLevel - stt->maxAnalog);
678 tmp32 = ((stt->maxLevel - stt->minLevel) * 51) >> 9;
698 tmp32 = ((stt->maxLevel - stt->minLevel) * 51) >> 9;
726 if (inMicLevelTmp > stt->maxLevel)
728 // Always allow the user to raise the volume above the maxLevel.
729 stt->maxLevel = inMicLevelTmp;
879 stt->maxLevel = (15 * stt->maxLevel + stt->micVol) / 16
    [all...]
gain_control.h 236 * - maxLevel : Maximum possible mic level
248 int32_t maxLevel,
analog_agc.h 107 int32_t maxLevel; // Max possible vol level, incl dig gain
  /frameworks/base/core/java/android/text/
AndroidBidi.java 110 int maxLevel = minLevel;
123 if (level > maxLevel) {
124 maxLevel = level;
155 swap = maxLevel > minLevel;
160 for (int level = maxLevel - 1; level >= minLevel; --level) {
  /external/opencv3/modules/video/perf/
perf_optflowpyrlk.cpp 52 int maxLevel = 2;
91 Size(winSize, winSize), maxLevel, criteria,
126 int maxLevel = 2;
162 maxLevel = buildOpticalFlowPyramid(frame1, pyramid1, Size(winSize, winSize), maxLevel, withDerivatives);
163 maxLevel = buildOpticalFlowPyramid(frame2, pyramid2, Size(winSize, winSize), maxLevel, withDerivatives);
172 Size(winSize, winSize), maxLevel, criteria,
210 int maxLevel = buildOpticalFlowPyramid(img, pyramid, winSize, 1000, withDerivatives, BORDER_CONSTANT, BORDER_CONSTANT, tryReuseInputImage);
217 buildOpticalFlowPyramid(img, pyramid, winSize, maxLevel, withDerivatives, pyrBorder, derivBorder, tryReuseInputImage)
    [all...]
  /external/opencv3/modules/imgproc/perf/opencl/
perf_pyramid.cpp 112 const int type = get<1>(params), maxLevel = 5;
117 std::vector<UMat> dst(maxLevel);
121 OCL_TEST_CYCLE() cv::buildPyramid(src, dst, maxLevel);
  /external/icu/android_icu4j/src/main/java/android/icu/text/
BidiLine.java 333 * Here, runCount>1 and maxLevel>=minLevel>=paraLevel.
339 * Since each run is moved but not modified, and since at the initial maxLevel
341 * don't need to do anything there and can predecrement maxLevel.
355 * However, for all maxLevel>paraLevel, this run will never be reordered
356 * and does not need to be taken into account. maxLevel==paraLevel is only reordered
362 private static void reorderLine(Bidi bidi, byte minLevel, byte maxLevel) {
365 if (maxLevel<=(minLevel|1)) {
390 while (--maxLevel >= minLevel) {
395 /* look for a sequence of runs that are all at >=maxLevel */
397 while (firstRun < runCount && levels[runs[firstRun].start] < maxLevel) {
    [all...]
  /external/icu/icu4c/source/common/
ubidiln.c 405 * Here, runCount>1 and maxLevel>=minLevel>=paraLevel.
411 * Since each run is moved but not modified, and since at the initial maxLevel
413 * don't need to do anything there and can predecrement maxLevel.
427 * However, for all maxLevel>paraLevel, this run will never be reordered
428 * and does not need to be taken into account. maxLevel==paraLevel is only reordered
435 reorderLine(UBiDi *pBiDi, UBiDiLevel minLevel, UBiDiLevel maxLevel) {
441 if(maxLevel<=(minLevel|1)) {
461 while(--maxLevel>=minLevel) {
466 /* look for a sequence of runs that are all at >=maxLevel */
468 while(firstRun<runCount && levels[runs[firstRun].logicalStart]<maxLevel) {
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
BidiLine.java 332 * Here, runCount>1 and maxLevel>=minLevel>=paraLevel.
338 * Since each run is moved but not modified, and since at the initial maxLevel
340 * don't need to do anything there and can predecrement maxLevel.
354 * However, for all maxLevel>paraLevel, this run will never be reordered
355 * and does not need to be taken into account. maxLevel==paraLevel is only reordered
361 private static void reorderLine(Bidi bidi, byte minLevel, byte maxLevel) {
364 if (maxLevel<=(minLevel|1)) {
389 while (--maxLevel >= minLevel) {
394 /* look for a sequence of runs that are all at >=maxLevel */
396 while (firstRun < runCount && levels[runs[firstRun].start] < maxLevel) {
    [all...]
  /external/opencv3/modules/imgproc/perf/
perf_pyramids.cpp 59 int maxLevel = 5;
63 std::vector<Mat> dst(maxLevel);
67 TEST_CYCLE() buildPyramid(src, dst, maxLevel);
  /external/opencv3/modules/video/include/opencv2/video/
tracking.hpp 111 @param maxLevel 0-based maximal pyramid level number.
118 @return number of levels in constructed pyramid. Can be less than maxLevel.
121 Size winSize, int maxLevel, bool withDerivatives = true,
142 @param maxLevel 0-based maximal pyramid level number; if set to 0, pyramids are not used (single
144 algorithm will use as many levels as pyramids have but no more than maxLevel.
176 Size winSize = Size(21,21), int maxLevel = 3,
  /frameworks/wilhelm/tests/examples/
slesTestEqFdPath.cpp 218 SLmillibel minLevel, maxLevel = 0;
219 result = (*eqItf)->GetBandLevelRange(eqItf, &minLevel, &maxLevel);
221 fprintf(stdout, "Band level range = %dmB to %dmB\n", minLevel, maxLevel);
229 result = (*eqItf)->SetBandLevel(eqItf, b, maxLevel);
slesTestEqOutputPath.cpp 222 SLmillibel minLevel, maxLevel = 0;
223 result = (*eqOutputItf)->GetBandLevelRange(eqOutputItf, &minLevel, &maxLevel);
225 fprintf(stdout, "Band level range = %dmB to %dmB\n", minLevel, maxLevel);
233 result = (*eqOutputItf)->SetBandLevel(eqOutputItf, b, maxLevel);
  /external/deqp/framework/common/
tcuTexLookupVerifier.cpp     [all...]
  /external/deqp/modules/gles3/functional/
es3fASTCDecompressionCases.cpp 206 ASTCSupportLevel maxLevel = ASTCSUPPORTLEVEL_NONE;
213 maxLevel = de::max(maxLevel, ext == "GL_KHR_texture_compression_astc_hdr" ? ASTCSUPPORTLEVEL_HDR
219 maxLevel = de::max(maxLevel, ext == "GL_KHR_texture_compression_astc_ldr" ? ASTCSUPPORTLEVEL_LDR
226 return maxLevel;
  /build/tools/droiddoc/templates-pdk/assets/
android-developer-reference.js 8 var maxLevel = 1;
27 maxLevel = SINCE_DATA.length;
30 userApiLevel = userApiLevel == 0 ? maxLevel : userApiLevel; // If there's no cookie (zero), use the max by default
44 minLevel = maxLevel;
47 for (var i = maxLevel-1; i >= 0; i--) {
59 maxLevel = SINCE_DATA.length;
61 var selectedLevel = maxLevel;
105 apiLevelNum = maxLevel;
  /external/opencv3/modules/videostab/include/opencv2/videostab/
optical_flow.hpp 88 virtual int maxLevel() const { return maxLevel_; }

Completed in 1231 milliseconds

1 2 3 4