Go to the documentation of this file.00001
00021 #ifndef IMAGESOURCE_H
00022 #define IMAGESOURCE_H
00023
00028 class ImageSource
00029 {
00030 public:
00034 virtual const char* getDescription() const = 0;
00035
00041 virtual int getNumberOfImages() const = 0;
00042
00049 virtual bool hasNextImage() = 0;
00050
00059 virtual IplImage* getNextImage() = 0;
00060 };
00061
00062 #endif // !IMAGESOURCE_H