00001 #ifndef __LINES_H__
00002 #define __LINES_H__
00003
00004 #include <stdint.h>
00005 #include "image.h"
00006 #include "field.h"
00007
00008 namespace spectral {
00009
00010 class Lines : public Field
00011 {
00012 public:
00013 Lines();
00014 virtual ~Lines();
00015
00016 protected:
00017
00018
00019 virtual void SetParameters(const Parameters *);
00020
00021
00022 virtual Image *Process(void);
00023
00024 protected:
00025
00026
00027 virtual void GetParameters(Parameters *) const;
00028
00029 int32_t m_number_of_lines;
00030 private:
00031 };
00032
00033 }
00034
00035 #endif