当前位置: 首页>>代码示例>>Java>>正文


Java NIVision.imaqColorThreshold方法代码示例

本文整理汇总了Java中com.ni.vision.NIVision.imaqColorThreshold方法的典型用法代码示例。如果您正苦于以下问题:Java NIVision.imaqColorThreshold方法的具体用法?Java NIVision.imaqColorThreshold怎么用?Java NIVision.imaqColorThreshold使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在com.ni.vision.NIVision的用法示例。


在下文中一共展示了NIVision.imaqColorThreshold方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: operate

import com.ni.vision.NIVision; //导入方法依赖的package包/类
@Override
public Image operate (Image source)
{
    // Creating new monocolor image with no border
    Image thresholdImage = NIVision
            .imaqCreateImage(ImageType.IMAGE_U8, 0);

    // @TODO: Store NIVision.Range instead of integers so we don't make a
    // new one every time.
    NIVision.imaqColorThreshold(thresholdImage, source, 255,
            NIVision.ColorMode.HSL, this.hueRange, this.satRange,
            this.lumRange);
    source.free();
    return (thresholdImage);
}
 
开发者ID:FIRST-Team-339,项目名称:2017,代码行数:16,代码来源:HSLColorThresholdOperator.java

示例2: operate

import com.ni.vision.NIVision; //导入方法依赖的package包/类
@Override
public Image operate (Image source)
{
    // Creating new monocolor image with no border
    final Image thresholdImage = NIVision
            .imaqCreateImage(ImageType.IMAGE_U8, 0);

    // @TODO: Store NIVision.Range instead of integers so we don't make a
    // new one every time.
    NIVision.imaqColorThreshold(thresholdImage, source, 255,
            NIVision.ColorMode.HSL, this.hueRange, this.satRange,
            this.lumRange);
    source.free();
    return thresholdImage;
}
 
开发者ID:FIRST-Team-339,项目名称:2016,代码行数:16,代码来源:HSLColorThresholdOperator.java

示例3: threshold

import com.ni.vision.NIVision; //导入方法依赖的package包/类
private BinaryImage threshold(NIVision.ColorMode colorMode, int low1, int high1, int low2,
    int high2, int low3, int high3) throws NIVisionException {
  BinaryImage res = new BinaryImage();
  NIVision.Range range1 = new NIVision.Range(low1, high1);
  NIVision.Range range2 = new NIVision.Range(low2, high2);
  NIVision.Range range3 = new NIVision.Range(low3, high3);
  NIVision.imaqColorThreshold(res.image, image, 1, colorMode, range1, range2, range3);
  res.free();
  range1.free();
  range2.free();
  range3.free();
  return res;
}
 
开发者ID:trc492,项目名称:Frc2016FirstStronghold,代码行数:14,代码来源:ColorImage.java


注:本文中的com.ni.vision.NIVision.imaqColorThreshold方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。