You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
502 B
C++
22 lines
502 B
C++
#ifndef ALGORITHMTPI_H
|
|
#define ALGORITHMTPI_H
|
|
|
|
#include "iAlgorithm.h"
|
|
#include <opencv2\opencv.hpp>
|
|
|
|
class CAlgorithmTpi : public IAlgorithm
|
|
{
|
|
public:
|
|
CAlgorithmTpi();
|
|
virtual ~CAlgorithmTpi();
|
|
private:
|
|
//struct tagTreeNode{
|
|
// QMap<int, tagTreeNode> childs;
|
|
//};
|
|
virtual int IImageAnalysis(class IImageObject* pImgObj, TP_ALGORITHM_OPTION* pOpt);
|
|
//bool addContour(int self, int parent, tagTreeNode& node);
|
|
//tagTreeNode* m_root;
|
|
};
|
|
|
|
#endif // ALGORITHMTPI_H
|