20 lines
360 B
C
20 lines
360 B
C
![]() |
#ifndef PLGUIN_ROI_H
|
||
|
#define PLGUIN_ROI_H
|
||
|
|
||
|
#include "LibapiThread.h"
|
||
|
#include <opencv2/opencv.hpp>
|
||
|
|
||
|
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
|