blob: 06a1534ea0927f2a6484c28a32a31c9b6f275abb [file] [log] [blame]
/**
*
*/
package org.spartanrobotics;
import edu.wpi.first.wpijavacv.WPIColorImage;
/**
* @author daniel
*
*/
/** Interface for program image contributors. */
public interface ImageGetter {
/** Gets the next image from the source/ */
WPIColorImage getFrame();
/** Gets the name of the image source. */
String getName();
}