InvertcolorTool.h 518 B

1234567891011121314151617181920212223242526272829303132
  1. #pragma once
  2. #include <QDialog>
  3. #include <QDialog>
  4. #include <QDebug>
  5. #include "ui_invertcolorTool.h"
  6. #include "../toolinterface.h"
  7. #include "HalconCpp.h"
  8. using namespace HalconCpp;
  9. namespace Ui {
  10. class invertcolor;
  11. }
  12. class invertcolor : public ToolInterface
  13. {
  14. Q_OBJECT
  15. public:
  16. explicit invertcolor(QWidget *parent = 0);
  17. ~invertcolor();
  18. //virtual bool Serialized(QDataStream& ar, bool bIsOut);
  19. virtual QString ShowParameter();
  20. virtual int Execute();
  21. private:
  22. Ui::invertcolor *ui;
  23. };