2014-12-23 15:55:36 -05:00
|
|
|
/*----------------------------------------------------------------------------*/
|
|
|
|
|
/* Copyright (c) FIRST 2014. All Rights Reserved. */
|
|
|
|
|
/* Open Source Software - may be modified and shared by FRC teams. The code */
|
|
|
|
|
/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib. */
|
|
|
|
|
/*----------------------------------------------------------------------------*/
|
|
|
|
|
|
|
|
|
|
#include "Vision/RGBImage.h"
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Create a new image that uses Red, Green, and Blue planes.
|
|
|
|
|
*/
|
2015-06-25 15:07:55 -04:00
|
|
|
RGBImage::RGBImage() : ColorImage(IMAQ_IMAGE_RGB) {}
|
2014-12-23 15:55:36 -05:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Create a new image by loading a file.
|
|
|
|
|
* @param fileName The path of the file to load.
|
|
|
|
|
*/
|
2015-06-25 15:07:55 -04:00
|
|
|
RGBImage::RGBImage(const char *fileName) : ColorImage(IMAQ_IMAGE_RGB) {
|
|
|
|
|
int success = imaqReadFile(m_imaqImage, fileName, NULL, NULL);
|
|
|
|
|
wpi_setImaqErrorWithContext(success, "Imaq ReadFile error");
|
2014-12-23 15:55:36 -05:00
|
|
|
}
|
|
|
|
|
|
2015-06-25 15:07:55 -04:00
|
|
|
RGBImage::~RGBImage() {}
|