You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
661 B
46 lines
661 B
|
|
#include "OtherDetect.h"
|
|
#include "CheckErrorCodeDefine.hpp"
|
|
|
|
AIDetectBase ::AIDetectBase(/* args */)
|
|
{
|
|
m_pOtherDet_Config = NULL;
|
|
|
|
m_bInitialized = false;
|
|
m_bModelSucc = false;
|
|
}
|
|
|
|
AIDetectBase ::~AIDetectBase()
|
|
{
|
|
}
|
|
int AIDetectBase ::Init(OtherDet_Config *pOtherDet_Config)
|
|
{
|
|
m_pOtherDet_Config = pOtherDet_Config;
|
|
|
|
m_bInitialized = true;
|
|
return 0;
|
|
}
|
|
|
|
LackPolDet::LackPolDet(/* args */)
|
|
{
|
|
}
|
|
|
|
LackPolDet::~LackPolDet()
|
|
{
|
|
}
|
|
int LackPolDet::Init_LackPol()
|
|
{
|
|
|
|
|
|
return 0;
|
|
}
|
|
int LackPolDet::InitModel_ALL()
|
|
{
|
|
|
|
return 0;
|
|
}
|
|
int LackPolDet::Detect(const cv::Mat &img, DetConfig *pDetConfig, cv::Mat &outMask)
|
|
{
|
|
|
|
return 0;
|
|
} |