org.opencv.core.Core.checkRange_1()方法的使用及代码示例

x33g5p2x  于2022-01-18 转载在 其他  
字(7.0k)|赞(0)|评价(0)|浏览(153)

本文整理了Java中org.opencv.core.Core.checkRange_1()方法的一些代码示例,展示了Core.checkRange_1()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Core.checkRange_1()方法的具体详情如下:
包路径:org.opencv.core.Core
类名称:Core
方法名:checkRange_1

Core.checkRange_1介绍

暂无

代码示例

代码示例来源:origin: kongqw/OpenCVForAndroid

public static boolean checkRange(Mat a)
{
  
  boolean retVal = checkRange_1(a.nativeObj);
  
  return retVal;
}

代码示例来源:origin: raulh82vlc/Image-Detection-Samples

public static boolean checkRange(Mat a)
{
  
  boolean retVal = checkRange_1(a.nativeObj);
  
  return retVal;
}

代码示例来源:origin: tz28/Chinese-number-gestures-recognition

public static boolean checkRange(Mat a)
{
  
  boolean retVal = checkRange_1(a.nativeObj);
  
  return retVal;
}

代码示例来源:origin: farkam135/GoIV

public static boolean checkRange(Mat a)
{
  
  boolean retVal = checkRange_1(a.nativeObj);
  
  return retVal;
}

代码示例来源:origin: leadrien/opencv_native_androidstudio

public static boolean checkRange(Mat a)
{
  
  boolean retVal = checkRange_1(a.nativeObj);
  
  return retVal;
}

代码示例来源:origin: SOFTPOWER1991/OpenCVCheck

public static boolean checkRange(Mat a)
{
  
  boolean retVal = checkRange_1(a.nativeObj);
  
  return retVal;
}

代码示例来源:origin: InnoFang/Android-Code-Demos

public static boolean checkRange(Mat a)
{
  
  boolean retVal = checkRange_1(a.nativeObj);
  
  return retVal;
}

代码示例来源:origin: hschott/Camdroid

public static boolean checkRange(Mat a)
{
  
  boolean retVal = checkRange_1(a.nativeObj);
  
  return retVal;
}

代码示例来源:origin: nroduit/Weasis

public static boolean checkRange(Mat a, boolean quiet, double minVal)
{
  
  boolean retVal = checkRange_1(a.nativeObj, quiet, minVal);
  
  return retVal;
}

代码示例来源:origin: ctodobom/OpenCV-3.1.0-Android

public static boolean checkRange(Mat a)
{
  
  boolean retVal = checkRange_1(a.nativeObj);
  
  return retVal;
}

代码示例来源:origin: DuckDeck/AndroidDemo

public static boolean checkRange(Mat a, boolean quiet, double minVal)
{
  
  boolean retVal = checkRange_1(a.nativeObj, quiet, minVal);
  
  return retVal;
}

代码示例来源:origin: imistyrain/EasyPR4Android

public static boolean checkRange(Mat a)
{
  
  boolean retVal = checkRange_1(a.nativeObj);
  
  return retVal;
}

代码示例来源:origin: SouvDc/face-detection

public static boolean checkRange(Mat a)
{
  
  boolean retVal = checkRange_1(a.nativeObj);
  
  return retVal;
}

代码示例来源:origin: akshika47/OpencvAndroid

public static boolean checkRange(Mat a)
{
  
  boolean retVal = checkRange_1(a.nativeObj);
  
  return retVal;
}

代码示例来源:origin: abhn/marvel

/**
 * <p>Checks every element of an input array for invalid values.</p>
 *
 * <p>The functions <code>checkRange</code> check that every array element is
 * neither NaN nor infinite. When <code>minVal < -DBL_MAX</code> and
 * <code>maxVal < DBL_MAX</code>, the functions also check that each value is
 * between <code>minVal</code> and <code>maxVal</code>. In case of multi-channel
 * arrays, each channel is processed independently.
 * If some values are out of range, position of the first outlier is stored in
 * <code>pos</code> (when <code>pos != NULL</code>). Then, the functions either
 * return false (when <code>quiet=true</code>) or throw an exception.</p>
 *
 * @param a input array.
 *
 * @see <a href="http://docs.opencv.org/modules/core/doc/operations_on_arrays.html#checkrange">org.opencv.core.Core.checkRange</a>
 */
  public static boolean checkRange(Mat a)
  {

    boolean retVal = checkRange_1(a.nativeObj);

    return retVal;
  }

代码示例来源:origin: ytai/IOIOPlotter

/**
 * <p>Checks every element of an input array for invalid values.</p>
 *
 * <p>The functions <code>checkRange</code> check that every array element is
 * neither NaN nor infinite. When <code>minVal < -DBL_MAX</code> and
 * <code>maxVal < DBL_MAX</code>, the functions also check that each value is
 * between <code>minVal</code> and <code>maxVal</code>. In case of multi-channel
 * arrays, each channel is processed independently.
 * If some values are out of range, position of the first outlier is stored in
 * <code>pos</code> (when <code>pos != NULL</code>). Then, the functions either
 * return false (when <code>quiet=true</code>) or throw an exception.</p>
 *
 * @param a input array.
 *
 * @see <a href="http://docs.opencv.org/modules/core/doc/operations_on_arrays.html#checkrange">org.opencv.core.Core.checkRange</a>
 */
  public static boolean checkRange(Mat a)
  {

    boolean retVal = checkRange_1(a.nativeObj);

    return retVal;
  }

代码示例来源:origin: com.sikulix/sikulixapi

/**
 * <p>Checks every element of an input array for invalid values.</p>
 *
 * <p>The functions <code>checkRange</code> check that every array element is
 * neither NaN nor infinite. When <code>minVal < -DBL_MAX</code> and
 * <code>maxVal < DBL_MAX</code>, the functions also check that each value is
 * between <code>minVal</code> and <code>maxVal</code>. In case of multi-channel
 * arrays, each channel is processed independently.
 * If some values are out of range, position of the first outlier is stored in
 * <code>pos</code> (when <code>pos != NULL</code>). Then, the functions either
 * return false (when <code>quiet=true</code>) or throw an exception.</p>
 *
 * @param a input array.
 *
 * @see <a href="http://docs.opencv.org/modules/core/doc/operations_on_arrays.html#checkrange">org.opencv.core.Core.checkRange</a>
 */
  public static boolean checkRange(Mat a)
  {

    boolean retVal = checkRange_1(a.nativeObj);

    return retVal;
  }

代码示例来源:origin: nu.pattern/opencv

/**
 * <p>Checks every element of an input array for invalid values.</p>
 *
 * <p>The functions <code>checkRange</code> check that every array element is
 * neither NaN nor infinite. When <code>minVal < -DBL_MAX</code> and
 * <code>maxVal < DBL_MAX</code>, the functions also check that each value is
 * between <code>minVal</code> and <code>maxVal</code>. In case of multi-channel
 * arrays, each channel is processed independently.
 * If some values are out of range, position of the first outlier is stored in
 * <code>pos</code> (when <code>pos != NULL</code>). Then, the functions either
 * return false (when <code>quiet=true</code>) or throw an exception.</p>
 *
 * @param a input array.
 *
 * @see <a href="http://docs.opencv.org/modules/core/doc/operations_on_arrays.html#checkrange">org.opencv.core.Core.checkRange</a>
 */
  public static boolean checkRange(Mat a)
  {

    boolean retVal = checkRange_1(a.nativeObj);

    return retVal;
  }

代码示例来源:origin: jtsky/EasyPR_Android

/**
 * <p>Checks every element of an input array for invalid values.</p>
 *
 * <p>The functions <code>checkRange</code> check that every array element is
 * neither NaN nor infinite. When <code>minVal < -DBL_MAX</code> and
 * <code>maxVal < DBL_MAX</code>, the functions also check that each value is
 * between <code>minVal</code> and <code>maxVal</code>. In case of multi-channel
 * arrays, each channel is processed independently.
 * If some values are out of range, position of the first outlier is stored in
 * <code>pos</code> (when <code>pos != NULL</code>). Then, the functions either
 * return false (when <code>quiet=true</code>) or throw an exception.</p>
 *
 * @param a input array.
 *
 * @see <a href="http://docs.opencv.org/modules/core/doc/operations_on_arrays.html#checkrange">org.opencv.core.Core.checkRange</a>
 */
  public static boolean checkRange(Mat a)
  {

    boolean retVal = checkRange_1(a.nativeObj);

    return retVal;
  }

相关文章

Core类方法