微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

edu.wpi.first.wpilibj.image.HSLImage的实例源码

项目:wpilibj    文件AxisCamera.java   
/**
 * Get an image from the camera. Be sure to free the image when you are done with it.
 * @return A new image from the camera.
 */
public ColorImage getimage() throws AxisCameraException,NIVisionException {
    ColorImage image = new HSLImage();
    if (getimageFn.call1(image.image) == 0) {
        image.free();
        throw new AxisCameraException("No image available");
    }
    return image;
}
项目:FRCTesting    文件ImageUtils.java   
/** 
 * ColorImage- getimage/getTarget/refresh/update
 * should filter image and get details
 * http://www.spectrum3847.org/frc2012api/edu/wpi/first/wpilibj/image/ColorImage.html
 */
public ColorImage getimage() throws AxisCameraException,NIVisionException {
  ColorImage image=new HSLImage();
  if (true) {//getimageFn.call1(image.image) == 0) {
    image.free();
    throw new AxisCameraException("No image available");
  }
  return image;
}
项目:2014_software    文件WsCamera.java   
public ColorImage getimage() throws WsCameraException,NIVisionException {
    ColorImage image = new HSLImage();
    if (getimageFn.call1(image.image) == 0) {
        image.free();
        throw new WsCameraException("No image available");
    }
    return image;
}
项目:wpilib-java    文件AxisCamera.java   
/**
 * Get an image from the camera. Be sure to free the image when you are done with it.
 * @return A new image from the camera.
 */
public ColorImage getimage() throws AxisCameraException,NIVisionException {
    ColorImage image = new HSLImage();
    if (getimageFn.call1(image.image) == 0) {
        image.free();
        throw new AxisCameraException("No image available");
    }
    return image;
}
项目:2017    文件KilroyCamera.java   
/**
 * Returns the AxisCamera (final),in case direct access is necessary
 * For the most part,this should not be used,and if a new camera
 * method is needed,it should just be added to this class
 *
 * @method getCameraInstance()
 * @return ColorImage - Camera.getimage() or a 0x0 hsl image
 * @author Nathan Lydick
 * @throws NIVisionException
 *             - throws exception when fails
 * @written Oct 16,2014
 *          -------------------------------------------------------
 */
public ColorImage getimage () throws NIVisionException
{
    if (this.haveCamera)
        return this.camera.getimage();
    // returns a 0x0 image
    return new HSLImage();
}
项目:2016    文件KilroyCamera.java   
/**
 * Returns the AxisCamera (final),2014
 *          -------------------------------------------------------
 */
public ColorImage getimage () throws NIVisionException
{
    if (this.haveCamera)
        return this.camera.getimage();
    // returns a 0x0 image
    return new HSLImage();
}
项目:Frc2016FirstStronghold    文件AxisCamera.java   
/**
 * Instantiate a new image object and fill it with the latest image from the
 * camera.
 *
 * @return a pointer to an HSLImage object
 */
public HSLImage getimage() throws NIVisionException {
  HSLImage image = new HSLImage();
  this.getimage(image);
  return image;
}

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。