image_framework_ymj/image_framework/plugins/PlguinRoi.h
2024-12-06 16:25:16 +08:00

20 lines
360 B
C++
Executable File

#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