|
|
|
|
@ -1724,6 +1724,7 @@ struct Function_Det_BQ
|
|
|
|
|
{
|
|
|
|
|
bool bBQ_AI_Det; // 是否启用标签独立AI检测
|
|
|
|
|
int BQ_expand;
|
|
|
|
|
bool bsaveAll;
|
|
|
|
|
|
|
|
|
|
Function_Det_BQ()
|
|
|
|
|
{
|
|
|
|
|
@ -1733,22 +1734,24 @@ struct Function_Det_BQ
|
|
|
|
|
{
|
|
|
|
|
BQ_expand = 0;
|
|
|
|
|
bBQ_AI_Det = false;
|
|
|
|
|
bsaveAll = false;
|
|
|
|
|
}
|
|
|
|
|
void copy(Function_Det_BQ tem)
|
|
|
|
|
{
|
|
|
|
|
this->BQ_expand = tem.BQ_expand;
|
|
|
|
|
this->bBQ_AI_Det = tem.bBQ_AI_Det;
|
|
|
|
|
this->bsaveAll = tem.bsaveAll;
|
|
|
|
|
}
|
|
|
|
|
void print(std::string str)
|
|
|
|
|
{
|
|
|
|
|
printf("%d BQ_expand %d bBQ_AI_Det %d\n", str.c_str(),
|
|
|
|
|
BQ_expand, bBQ_AI_Det);
|
|
|
|
|
printf("%d BQ_expand %d bBQ_AI_Det %d bsaveAll %d\n", str.c_str(),
|
|
|
|
|
BQ_expand, bBQ_AI_Det, bsaveAll);
|
|
|
|
|
}
|
|
|
|
|
std::string GetInfo(std::string str)
|
|
|
|
|
{
|
|
|
|
|
char buffer[256];
|
|
|
|
|
sprintf(buffer, "%d BQ_expand %d bBQ_AI_Det %d\n", str.c_str(),
|
|
|
|
|
BQ_expand, bBQ_AI_Det);
|
|
|
|
|
sprintf(buffer, "%d BQ_expand %d bBQ_AI_Det %d bsaveAll %d\n", str.c_str(),
|
|
|
|
|
BQ_expand, bBQ_AI_Det, bsaveAll);
|
|
|
|
|
std::string str123 = buffer;
|
|
|
|
|
return str123;
|
|
|
|
|
}
|
|
|
|
|
|