ClassFlowAlignment.h 865 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. #pragma once
  2. #include "ClassFlow.h"
  3. #include "Helper.h"
  4. #include <string>
  5. using namespace std;
  6. class ClassFlowAlignment :
  7. public ClassFlow
  8. {
  9. protected:
  10. float initalrotate;
  11. bool initialmirror;
  12. string reffilename[2];
  13. int ref_x[2], ref_y[2];
  14. int ref_dx[2], ref_dy[2];
  15. int anz_ref;
  16. int suchex, suchey;
  17. string namerawimage;
  18. bool SaveAllFiles;
  19. CAlignAndCutImage *AlignAndCutImage;
  20. void SetInitialParameter(void);
  21. public:
  22. CImageBasis *ImageBasis, *ImageTMP;
  23. ClassFlowAlignment(std::vector<ClassFlow*>* lfc);
  24. CAlignAndCutImage* GetAlignAndCutImage(){return AlignAndCutImage;};
  25. void DrawRef(CImageBasis *_zw);
  26. bool ReadParameter(FILE* pfile, string& aktparamgraph);
  27. bool doFlow(string time);
  28. string getHTMLSingleStep(string host);
  29. string name(){return "ClassFlowAlignment";};
  30. };