00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 #ifndef __PROJECTIONINTERFACE_H_
00020 #define __PROJECTIONINTERFACE_H_
00021
00022
00023 #include "../Shared/Utilities.h"
00024 #include "../Shared/BaseComponent.h"
00025 #include "../Shared/Utilities_Vision.h"
00026 #include <iostream>
00027 #include <fstream>
00028
00030 class ProjectionInterface : public BaseComponent
00031 {
00032 public:
00033
00035 ProjectionInterface();
00036
00038 ~ProjectionInterface();
00039
00041 int Update();
00042
00043 private:
00045 CvMat* trans_mat;
00046
00048 IplImage* input;
00049
00051 IplImage* dest;
00052 };
00053
00054
00055 #endif
00056