danielp | b913fa7 | 2013-03-03 06:23:20 +0000 | [diff] [blame] | 1 | /** |
2 | * | ||||
3 | */ | ||||
4 | package org.spartanrobotics; | ||||
5 | |||||
6 | import edu.wpi.first.wpijavacv.WPIColorImage; | ||||
7 | |||||
8 | /** | ||||
9 | * @author daniel | ||||
10 | * | ||||
11 | */ | ||||
12 | |||||
13 | /** Interface for program image contributors. */ | ||||
14 | public 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 | } |