#ifndef PLGUIN_ROI_H #define PLGUIN_ROI_H #include "LibapiThread.h" #include class PlguinRoi : BaseRunnable { private: cv::Mat mDonut; cv::Mat mDonut1; int idx = 0; public: PlguinRoi(); virtual ~PlguinRoi(); int OnProcess(LibapiThread* pThisThread, void* pMsg); void OnEndProcess(LibapiThread* pThisThread, void* pMsg); }; #endif