blob: 06a1534ea0927f2a6484c28a32a31c9b6f275abb [file] [log] [blame]
danielpb913fa72013-03-03 06:23:20 +00001/**
2 *
3 */
4package org.spartanrobotics;
5
6import edu.wpi.first.wpijavacv.WPIColorImage;
7
8/**
9 * @author daniel
10 *
11 */
12
13/** Interface for program image contributors. */
14public interface ImageGetter {
15
16 /** Gets the next image from the source/ */
17 WPIColorImage getFrame();
18
19 /** Gets the name of the image source. */
20 String getName();
21
22}