fix.修复一处日志错误,更新一处阈值

This commit is contained in:
MistEO
2021-09-29 23:50:32 +08:00
parent f497f752f4
commit eaefe9353f
2 changed files with 2 additions and 2 deletions

View File

@@ -527,7 +527,7 @@
"EnterOperator": {
"template": "EnterOperator.png",
"rareDelay": 1000,
"templThreshold": 0.8,
"templThreshold": 0.7,
"action": "clickSelf",
"next": [
"Stop"

View File

@@ -88,7 +88,7 @@ std::optional<asst::Rect> asst::Identify::feature_match(
)
{
if (query_mat_vector.empty() || train_mat_vector.empty()) {
DebugTraceError("feature_match | image empty");
DebugTraceError("feature_match | input vector is empty");
return std::nullopt;
}
std::vector<cv::DMatch> matches;