code_device/hgdriver/ImageProcess/ImageMulti.h

26 lines
445 B
C
Raw Permalink Normal View History

2022-07-29 08:41:34 +00:00
#ifndef IMAGE_MULTI_H
#define IMAGE_MULTI_H
#include "IMulti.h"
class GIMGPROC_LIBRARY_API IMageMulti
:public IMulti
{
public:
enum MultiOutput
{
NONE=-1,
ALL,
COLORGRAY,
COLORBW,
GRAYBW
};
public:
IMageMulti(int multiType = 0,int thre = 128);
virtual ~IMageMulti(void);
virtual std::vector<cv::Mat> apply(cv::Mat& pDib);
private:
int m_multiType;
int m_thre;
};
2022-05-03 03:56:07 +00:00
#endif // !IMAGE_MULTI_H