Searched refs:maxLevel (Results 1 - 25 of 53) sorted by relevance

123

/external/skia/bench/
H A DPictureNestingBench.cpp19 PictureNesting(const char* name, int maxLevel, int maxPictureLevel) argument
20 : fMaxLevel(maxLevel)
111 PictureNestingRecording(int maxLevel, int maxPictureLevel) argument
112 : INHERITED("recording", maxLevel, maxPictureLevel) {
138 PictureNestingPlayback(int maxLevel, int maxPictureLevel) argument
139 : INHERITED("playback", maxLevel, maxPictureLevel) {
/external/opencv3/modules/java/src/
H A Dvideo+Video.java65 // 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) argument
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) argument
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, TermCriteri argument
106 calcOpticalFlowPyrLK(Mat prevImg, Mat nextImg, MatOfPoint2f prevPts, MatOfPoint2f nextPts, MatOfByte status, MatOfFloat err, Size winSize, int maxLevel) argument
259 buildOpticalFlowPyramid_0(long img_nativeObj, long pyramid_mat_nativeObj, double winSize_width, double winSize_height, int maxLevel, boolean withDerivatives, int pyrBorder, int derivBorder, boolean tryReuseInputImage) argument
260 buildOpticalFlowPyramid_1(long img_nativeObj, long pyramid_mat_nativeObj, double winSize_width, double winSize_height, int maxLevel) argument
263 calcOpticalFlowPyrLK_0(long prevImg_nativeObj, long nextImg_nativeObj, long prevPts_mat_nativeObj, long nextPts_mat_nativeObj, long status_mat_nativeObj, long err_mat_nativeObj, double winSize_width, double winSize_height, int maxLevel, int criteria_type, int criteria_maxCount, double criteria_epsilon, int flags, double minEigThreshold) argument
264 calcOpticalFlowPyrLK_1(long prevImg_nativeObj, long nextImg_nativeObj, long prevPts_mat_nativeObj, long nextPts_mat_nativeObj, long status_mat_nativeObj, long err_mat_nativeObj, double winSize_width, double winSize_height, int maxLevel) argument
[all...]
/external/opencv3/modules/cudaoptflow/include/opencv2/
H A Dcudaoptflow.hpp167 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/
H A Dlkpyramid.hpp30 int maxLevel; member in struct:cv::detail::LKTrackerInvoker
H A Dlkpyramid.cpp211 maxLevel = _maxLevel;
242 if( level == maxLevel )
744 int cv::buildOpticalFlowPyramid(InputArray _img, OutputArrayOfArrays pyramid, Size winSize, int maxLevel, bool withDerivatives, argument
751 pyramid.create(1, (maxLevel + 1) * pyrstep, 0 /*type*/, -1, true, 0);
791 for(int level = 0; level <= maxLevel; ++level)
837 return maxLevel;
853 maxLevel = 3;
868 if (maxLevel < 0 || winSize.width <= 2 || winSize.height <= 2)
885 multiply(1.0f / (1 << maxLevel) /2.0f, temp1, temp2);
890 std::vector<UMat> prevPyr; prevPyr.resize(maxLevel
934 int maxLevel; member in class:cv::PyrLKOpticalFlow
1022 ocl_calcOpticalFlowPyrLK(InputArray _prevImg, InputArray _nextImg, InputArray _prevPts, InputOutputArray _nextPts, OutputArray _status, OutputArray _err, Size winSize, int maxLevel, TermCriteria criteria, int flags ) argument
1088 calcOpticalFlowPyrLK( InputArray _prevImg, InputArray _nextImg, InputArray _prevPts, InputOutputArray _nextPts, OutputArray _status, OutputArray _err, Size winSize, int maxLevel, TermCriteria criteria, int flags, double minEigThreshold ) argument
[all...]
/external/opencv3/modules/video/test/ocl/
H A Dtest_optflowpyrlk.cpp61 int maxLevel; local
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/
H A Dpyrlk.cpp74 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
[all...]
/external/opencv3/modules/video/perf/opencl/
H A Dperf_optflow_pyrlk.cpp77 const int maxLevel = 3; local
93 cv::calcOpticalFlowPyrLK(uFrame0, uFrame1, pts, uNextPts, uStatus, uErr, winSize, maxLevel, criteria, flags, minEigThreshold);
/external/webrtc/webrtc/modules/audio_processing/agc/legacy/
H A Danalog_agc.c141 /* |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
1348 WebRtcAgc_Init(void *agcInst, int32_t minLevel, int32_t maxLevel, int16_t agcMode, uint32_t fs) argument
[all...]
H A Dgain_control.h236 * - maxLevel : Maximum possible mic level
248 int32_t maxLevel,
H A Danalog_agc.h107 int32_t maxLevel; // Max possible vol level, incl dig gain member in struct:__anon20948
/external/opencv3/modules/video/perf/
H A Dperf_optflowpyrlk.cpp52 int maxLevel = 2; local
91 Size(winSize, winSize), maxLevel, criteria,
126 int maxLevel = 2; local
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); local
217 buildOpticalFlowPyramid(img, pyramid, winSize, maxLevel, withDerivative
[all...]
/external/opencv3/modules/imgproc/perf/opencl/
H A Dperf_pyramid.cpp112 const int type = get<1>(params), maxLevel = 5; local
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/
H A DBidiLine.java333 * 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) { argument
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/
H A Dubidiln.c405 * 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) { argument
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) {
600 UBiDiLevel minLevel=UBIDI_MAX_EXPLICIT_LEVEL+1, maxLevel=0; local
714 UBiDiLevel level, minLevel, maxLevel; local
752 UBiDiLevel minLevel = 0, maxLevel = 0; local
815 UBiDiLevel minLevel = 0, maxLevel = 0; local
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DBidiLine.java332 * 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) { argument
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/
H A Dperf_pyramids.cpp59 int maxLevel = 5; local
63 std::vector<Mat> dst(maxLevel);
67 TEST_CYCLE() buildPyramid(src, dst, maxLevel);
/external/opencv3/modules/video/include/opencv2/video/
H A Dtracking.hpp111 @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,
/external/doclava/res/assets/templates/assets/
H A Ddoclava-developer-reference.js28 var maxLevel = SINCE_DATA.length;
31 userApiLevel = userApiLevel == 0 ? maxLevel : userApiLevel; // If there's no cookie (zero), use the max by default
42 for (var i = maxLevel-1; i >= 0; i--) {
54 var maxLevel = SINCE_DATA.length;
56 var selectedLevel = maxLevel;
/external/deqp/framework/common/
H A DtcuTexLookupVerifier.cpp1340 const int maxLevel = de::clamp((int)deFloatFloor(maxLod), minTexLevel, maxTexLevel-1); local
1342 DE_ASSERT(minLevel <= maxLevel);
1344 for (int level = minLevel; level <= maxLevel; level++)
1358 const int maxLevel = de::clamp((int)deFloatFloor(maxLod + 0.5f), minTexLevel, maxTexLevel); local
1360 DE_ASSERT(minLevel <= maxLevel);
1362 for (int level = minLevel; level <= maxLevel; level++)
1405 const int maxLevel = de::clamp((int)deFloatFloor(maxLod), minTexLevel, maxTexLevel-1); local
1407 DE_ASSERT(minLevel <= maxLevel);
1409 for (int level = minLevel; level <= maxLevel; level++)
1423 const int maxLevel local
1706 const int maxLevel = de::clamp((int)deFloatFloor(maxLod), minTexLevel, maxTexLevel-1); local
1730 const int maxLevel = de::clamp((int)deFloatFloor(maxLod + 0.5f), minTexLevel, maxTexLevel); local
1799 const int maxLevel = de::clamp((int)deFloatFloor(maxLod), minTexLevel, maxTexLevel-1); local
1817 const int maxLevel = de::clamp((int)deFloatFloor(maxLod + 0.5f), minTexLevel, maxTexLevel); local
1869 const int maxLevel = de::clamp((int)deFloatFloor(maxLod), minTexLevel, maxTexLevel-1); local
1887 const int maxLevel = de::clamp((int)deFloatFloor(maxLod + 0.5f), minTexLevel, maxTexLevel); local
1963 const int maxLevel = de::clamp((int)deFloatFloor(maxLod), minTexLevel, maxTexLevel-1); local
1981 const int maxLevel = de::clamp((int)deFloatFloor(maxLod + 0.5f), minTexLevel, maxTexLevel); local
2058 const int maxLevel = de::clamp((int)deFloatFloor(maxLod), minTexLevel, maxTexLevel-1); local
2082 const int maxLevel = de::clamp((int)deFloatFloor(maxLod + 0.5f), minTexLevel, maxTexLevel); local
[all...]
H A DtcuTexture.cpp2134 int maxLevel = (int)numLevels-1; local
2135 int level = deClamp32((int)deFloatCeil(lod + 0.5f) - 1, 0, maxLevel);
2144 int maxLevel = (int)numLevels-1; local
2145 int level0 = deClamp32((int)deFloatFloor(lod), 0, maxLevel);
2146 int level1 = de::min(maxLevel, level0 + 1);
2174 int maxLevel = (int)numLevels-1; local
2175 int level = deClamp32((int)deFloatCeil(lod + 0.5f) - 1, 0, maxLevel);
2184 int maxLevel = (int)numLevels-1; local
2185 int level0 = deClamp32((int)deFloatFloor(lod), 0, maxLevel);
2186 int level1 = de::min(maxLevel, level
2214 int maxLevel = (int)numLevels-1; local
2224 int maxLevel = (int)numLevels-1; local
2254 int maxLevel = (int)numLevels-1; local
2264 int maxLevel = (int)numLevels-1; local
2294 int maxLevel = (int)numLevels-1; local
2304 int maxLevel = (int)numLevels-1; local
[all...]
/external/deqp/modules/gles3/functional/
H A Des3fASTCDecompressionCases.cpp206 ASTCSupportLevel maxLevel = ASTCSUPPORTLEVEL_NONE; local
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;
/external/opencv3/modules/videostab/include/opencv2/videostab/
H A Doptical_flow.hpp88 virtual int maxLevel() const { return maxLevel_; } function in class:cv::videostab::PyrLkOptFlowEstimatorBase
/external/opencv3/samples/python2/
H A Dlk_track.py28 maxLevel = 2, variable
/external/opencv3/samples/gpu/
H A Dpyrlk_optical_flow.cpp113 int maxLevel = cmd.get<int>("max_level"); local
152 Size(winSize, winSize), maxLevel, iters);

Completed in 2695 milliseconds

123