Searched refs:maxLevel (Results 26 - 50 of 53) sorted by relevance

123

/external/deqp/framework/common/
H A DtcuTexCompareVerifier.cpp838 const int maxLevel = de::clamp((int)deFloatFloor(maxLod), minTexLevel, maxTexLevel-1);
840 DE_ASSERT(minLevel <= maxLevel);
842 for (int level = minLevel; level <= maxLevel; level++)
856 const int maxLevel = de::clamp((int)deFloatFloor(maxLod + 0.5f), minTexLevel, maxTexLevel);
858 DE_ASSERT(minLevel <= maxLevel);
860 for (int level = minLevel; level <= maxLevel; level++)
1121 const int maxLevel = de::clamp((int)deFloatFloor(maxLod), minTexLevel, maxTexLevel-1);
1123 DE_ASSERT(minLevel <= maxLevel);
1125 for (int level = minLevel; level <= maxLevel; level++)
1139 const int maxLevel
[all...]
/external/opencv3/samples/python2/
H A Dlk_homography.py29 maxLevel = 2, variable
/external/deqp/modules/glshared/
H A DglsTextureTestUtil.hpp324 , maxLevel (1000)
335 , maxLevel (1000)
344 int maxLevel; member in struct:deqp::gls::TextureTestUtil::ReferenceParams
H A DglsTextureTestUtil.cpp110 static tcu::Texture1DView getSubView (const tcu::Texture1DView& view, int baseLevel, int maxLevel) argument
113 const int clampedMax = de::clamp(maxLevel, clampedBase, view.getNumLevels()-1);
118 static tcu::Texture2DView getSubView (const tcu::Texture2DView& view, int baseLevel, int maxLevel) argument
121 const int clampedMax = de::clamp(maxLevel, clampedBase, view.getNumLevels()-1);
126 static tcu::TextureCubeView getSubView (const tcu::TextureCubeView& view, int baseLevel, int maxLevel) argument
129 const int clampedMax = de::clamp(maxLevel, clampedBase, view.getNumLevels()-1);
139 static tcu::Texture3DView getSubView (const tcu::Texture3DView& view, int baseLevel, int maxLevel) argument
142 const int clampedMax = de::clamp(maxLevel, clampedBase, view.getNumLevels()-1);
147 static tcu::TextureCubeArrayView getSubView (const tcu::TextureCubeArrayView& view, int baseLevel, int maxLevel) argument
150 const int clampedMax = de::clamp(maxLevel, clampedBas
[all...]
/external/opencv3/modules/imgproc/src/
H A Ddrawing.cpp2278 int maxLevel, Point offset )
2315 if( hierarchy.empty() || maxLevel == 0 )
2351 -maxLevel : maxLevel, thickness, lineType, offset );
2365 int maxLevel, int thickness,
2388 maxLevel = MAX(maxLevel, INT_MIN+2);
2389 maxLevel = MIN(maxLevel, INT_MAX-1);
2391 if( maxLevel <
[all...]
/external/opencv3/modules/java/src/
H A Dvideo.cpp274 // 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)
280 (JNIEnv* env, jclass , jlong img_nativeObj, jlong pyramid_mat_nativeObj, jdouble winSize_width, jdouble winSize_height, jint maxLevel, jboolean withDerivatives, jint pyrBorder, jint derivBorder, jboolean tryReuseInputImage)
289 int _retval_ = cv::buildOpticalFlowPyramid( img, pyramid, winSize, (int)maxLevel, (bool)withDerivatives, (int)pyrBorder, (int)derivBorder, (bool)tryReuseInputImage );
305 (JNIEnv* env, jclass , jlong img_nativeObj, jlong pyramid_mat_nativeObj, jdouble winSize_width, jdouble winSize_height, jint maxLevel)
314 int _retval_ = cv::buildOpticalFlowPyramid( img, pyramid, winSize, (int)maxLevel );
328 // 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)
334 (JNIEnv* env, jclass , jlong prevImg_nativeObj, jlong nextImg_nativeObj, jlong prevPts_mat_nativeObj, jlong nextPts_mat_nativeObj, jlong status_mat_nativeObj, jlong err_mat_nativeObj, jdouble winSize_width, jdouble winSize_height, jint maxLevel, jint criteria_type, jint criteria_maxCount, jdouble criteria_epsilon, jint flags, jdouble minEigThreshold)
353 cv::calcOpticalFlowPyrLK( prevImg, nextImg, prevPts, nextPts, status, err, winSize, (int)maxLevel, criteria, (int)flags, (double)minEigThreshold );
369 (JNIEnv* env, jclass , jlong prevImg_nativeObj, jlong nextImg_nativeObj, jlong prevPts_mat_nativeObj, jlong nextPts_mat_nativeObj, jlong status_mat_nativeObj, jlong err_mat_nativeObj, jdouble winSize_width, jdouble winSize_height, jint maxLevel)
387 cv::calcOpticalFlowPyrLK( prevImg, nextImg, prevPts, nextPts, status, err, winSize, (int)maxLevel );
279 Java_org_opencv_video_Video_buildOpticalFlowPyramid_10(JNIEnv* env, jclass , jlong img_nativeObj, jlong pyramid_mat_nativeObj, jdouble winSize_width, jdouble winSize_height, jint maxLevel, jboolean withDerivatives, jint pyrBorder, jint derivBorder, jboolean tryReuseInputImage) argument
304 Java_org_opencv_video_Video_buildOpticalFlowPyramid_11(JNIEnv* env, jclass , jlong img_nativeObj, jlong pyramid_mat_nativeObj, jdouble winSize_width, jdouble winSize_height, jint maxLevel) argument
333 Java_org_opencv_video_Video_calcOpticalFlowPyrLK_10(JNIEnv* env, jclass , jlong prevImg_nativeObj, jlong nextImg_nativeObj, jlong prevPts_mat_nativeObj, jlong nextPts_mat_nativeObj, jlong status_mat_nativeObj, jlong err_mat_nativeObj, jdouble winSize_width, jdouble winSize_height, jint maxLevel, jint criteria_type, jint criteria_maxCount, jdouble criteria_epsilon, jint flags, jdouble minEigThreshold) argument
368 Java_org_opencv_video_Video_calcOpticalFlowPyrLK_11(JNIEnv* env, jclass , jlong prevImg_nativeObj, jlong nextImg_nativeObj, jlong prevPts_mat_nativeObj, jlong nextPts_mat_nativeObj, jlong status_mat_nativeObj, jlong err_mat_nativeObj, jdouble winSize_width, jdouble winSize_height, jint maxLevel) argument
[all...]
H A Dimgproc+Imgproc.java1917 // C++: void pyrMeanShiftFiltering(Mat src, Mat& dst, double sp, double sr, int maxLevel = 1, TermCriteria termcrit = TermCriteria(TermCriteria::MAX_ITER+TermCriteria::EPS,5,1))
1920 //javadoc: pyrMeanShiftFiltering(src, dst, sp, sr, maxLevel, termcrit)
1921 public static void pyrMeanShiftFiltering(Mat src, Mat dst, double sp, double sr, int maxLevel, TermCriteria termcrit) argument
1924 pyrMeanShiftFiltering_0(src.nativeObj, dst.nativeObj, sp, sr, maxLevel, termcrit.type, termcrit.maxCount, termcrit.epsilon);
2762 // C++: void drawContours(Mat& image, vector_vector_Point contours, int contourIdx, Scalar color, int thickness = 1, int lineType = LINE_8, Mat hierarchy = Mat(), int maxLevel = INT_MAX, Point offset = Point())
2765 //javadoc: drawContours(image, contours, contourIdx, color, thickness, lineType, hierarchy, maxLevel, offset)
2766 public static void drawContours(Mat image, List<MatOfPoint> contours, int contourIdx, Scalar color, int thickness, int lineType, Mat hierarchy, int maxLevel, Point offset) argument
2770 drawContours_0(image.nativeObj, contours_mat.nativeObj, contourIdx, color.val[0], color.val[1], color.val[2], color.val[3], thickness, lineType, hierarchy.nativeObj, maxLevel, offset.x, offset.y);
3126 // C++: void pyrMeanShiftFiltering(Mat src, Mat& dst, double sp, double sr, int maxLevel = 1, TermCriteria termcrit = TermCriteria(TermCriteria::MAX_ITER+TermCriteria::EPS,5,1))
3127 private static native void pyrMeanShiftFiltering_0(long src_nativeObj, long dst_nativeObj, double sp, double sr, int maxLevel, in argument
3274 drawContours_0(long image_nativeObj, long contours_mat_nativeObj, int contourIdx, double color_val0, double color_val1, double color_val2, double color_val3, int thickness, int lineType, long hierarchy_nativeObj, int maxLevel, double offset_x, double offset_y) argument
[all...]
H A Dimgproc.cpp4015 // void pyrMeanShiftFiltering(Mat src, Mat& dst, double sp, double sr, int maxLevel = 1, TermCriteria termcrit = TermCriteria(TermCriteria::MAX_ITER+TermCriteria::EPS,5,1))
4021 (JNIEnv* env, jclass , jlong src_nativeObj, jlong dst_nativeObj, jdouble sp, jdouble sr, jint maxLevel, jint termcrit_type, jint termcrit_maxCount, jdouble termcrit_epsilon)
4029 cv::pyrMeanShiftFiltering( src, dst, (double)sp, (double)sr, (int)maxLevel, termcrit );
5803 // void drawContours(Mat& image, vector_vector_Point contours, int contourIdx, Scalar color, int thickness = 1, int lineType = LINE_8, Mat hierarchy = Mat(), int maxLevel = INT_MAX, Point offset = Point())
5809 (JNIEnv* env, jclass , jlong image_nativeObj, jlong contours_mat_nativeObj, jint contourIdx, jdouble color_val0, jdouble color_val1, jdouble color_val2, jdouble color_val3, jint thickness, jint lineType, jlong hierarchy_nativeObj, jint maxLevel, jdouble offset_x, jdouble offset_y)
5821 cv::drawContours( image, contours, (int)contourIdx, color, (int)thickness, (int)lineType, hierarchy, (int)maxLevel, offset );
4020 Java_org_opencv_imgproc_Imgproc_pyrMeanShiftFiltering_10(JNIEnv* env, jclass , jlong src_nativeObj, jlong dst_nativeObj, jdouble sp, jdouble sr, jint maxLevel, jint termcrit_type, jint termcrit_maxCount, jdouble termcrit_epsilon) argument
5808 Java_org_opencv_imgproc_Imgproc_drawContours_10(JNIEnv* env, jclass , jlong image_nativeObj, jlong contours_mat_nativeObj, jint contourIdx, jdouble color_val0, jdouble color_val1, jdouble color_val2, jdouble color_val3, jint thickness, jint lineType, jlong hierarchy_nativeObj, jint maxLevel, jdouble offset_x, jdouble offset_y) argument
/external/mesa3d/src/mesa/main/
H A Dmipmap.c1886 GLuint maxLevel)
1894 for (level = texObj->BaseLevel; level < maxLevel; level++) {
2018 GLuint maxLevel)
2079 for (level = texObj->BaseLevel; level < maxLevel; level++) {
2168 GLint maxLevel; local
2174 maxLevel = _mesa_max_texture_levels(ctx, texObj->Target) - 1;
2175 ASSERT(maxLevel >= 0); /* bad target */
2177 maxLevel = MIN2(maxLevel, texObj->MaxLevel);
2180 generate_mipmap_compressed(ctx, target, texObj, srcImage, maxLevel);
1883 generate_mipmap_uncompressed(struct gl_context *ctx, GLenum target, struct gl_texture_object *texObj, const struct gl_texture_image *srcImage, GLuint maxLevel) argument
2015 generate_mipmap_compressed(struct gl_context *ctx, GLenum target, struct gl_texture_object *texObj, struct gl_texture_image *srcImage, GLuint maxLevel) argument
[all...]
H A Dtexobj.c579 const GLint maxLevel = t->_MaxLevel; local
583 if (minLevel > maxLevel) {
584 incomplete(t, BASE, "minLevel > maxLevel");
608 if (i >= minLevel && i <= maxLevel) {
/external/deqp/modules/gles3/functional/
H A Des3fTextureMipmapTests.cpp1700 const int maxLevel = (deInt32Hash(cellNdx) ^ deStringHash(getName()) ^ 0x82cfa4e) % numLevels; local
1702 return maxLevel;
1713 params.maxLevel = getMaxLevel(cellNdx);
2015 const int maxLevel = (deInt32Hash(cellNdx) ^ deStringHash(getName()) ^ 0x974e21) % numLevels; local
2017 return maxLevel;
2028 params.maxLevel = getMaxLevel(cellNdx);
2332 const int maxLevel = (deInt32Hash(cellNdx) ^ deStringHash(getName()) ^ 0x9111e7) % numLevels; local
2334 return maxLevel;
2345 params.maxLevel = getMaxLevel(cellNdx);
H A Des3fTextureUnitTests.cpp592 const deInt32 maxLevel = (lodMax + epsilon < 0.5f) ? (0) : (deCeilFloatToInt32(lodMax + epsilon + 0.5f) - 1); local
597 maxLevel != minLevel)
H A Des3fShaderTextureFunctionTests.cpp1147 const int maxLevel = testSize.lod + testSize.lodBase; local
1148 const int levels = maxLevel + 1;
/external/opencv/cxcore/src/
H A Dcxdrawing.cpp2417 int maxLevel, int thickness,
2452 if( maxLevel < 0 )
2456 maxLevel = -maxLevel+1;
2471 cvInitTreeNodeIterator( &iterator, contour, maxLevel );
2415 cvDrawContours( void* img, CvSeq* contour, CvScalar externalColor, CvScalar holeColor, int maxLevel, int thickness, int line_type, CvPoint offset ) argument
/external/deqp/framework/opengl/simplereference/
H A DsglrReferenceContext.hpp98 void setMaxLevel (int maxLevel) { m_maxLevel = maxLevel; } argument
/external/deqp/modules/gles2/functional/
H A Des2fTextureUnitTests.cpp436 const deInt32 maxLevel = (lodMax + epsilon < 0.5f) ? (0) : (deCeilFloatToInt32(lodMax + epsilon + 0.5f) - 1); local
441 maxLevel != minLevel)
/external/opencv3/modules/imgproc/include/opencv2/
H A Dimgproc.hpp3010 When maxLevel \> 0, the gaussian pyramid of maxLevel+1 levels is built, and the above procedure is
3015 whole original image (i.e. when maxLevel==0).
3021 @param maxLevel Maximum level of the pyramid for the segmentation.
3025 double sp, double sr, int maxLevel = 1,
4008 some of the contours (see maxLevel ).
4009 @param maxLevel Maximal level for drawn contours. If it is 0, only the specified contour is drawn.
4020 int maxLevel = INT_MAX, Point offset = Point() );
/external/deqp/modules/gles31/functional/
H A Des31fCopyImageTests.cpp935 renderParams.maxLevel = level;
1087 renderParams.maxLevel = level;
1200 renderParams.maxLevel = level;
1371 renderParams.maxLevel = level;
/external/guice/extensions/persist/lib/
H A Dhibernate-search.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/hibernate/ org/hibernate/search/ org/hibernate/search/annotations/ ...
/external/mesa3d/src/mesa/drivers/common/
H A Dmeta.c3242 const GLuint maxLevel = texObj->MaxLevel; local
3361 for (dstLevel = baseLevel + 1; dstLevel <= maxLevel; dstLevel++) {
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dcom.ibm.icu_4.2.1.v20100412.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/robolectric/v1/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
/external/robolectric/v3/runtime/
H A Dandroid-all-4.1.2_r1-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.2.2_r1.2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.3_r2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...

Completed in 9278 milliseconds

123