chore: Auto update by pre-commit hooks [skip changelog]

This commit is contained in:
pre-commit-ci[bot]
2024-10-22 08:40:20 +00:00
parent 6fecfa640d
commit d3796ea4b3
261 changed files with 7746 additions and 7012 deletions

View File

@@ -68,8 +68,13 @@ MultiMatcher::ResultsVecOpt MultiMatcher::analyze() const
#ifdef ASST_DEBUG
for (const auto& rect : results) {
cv::rectangle(m_image_draw, make_rect<cv::Rect>(rect.rect), cv::Scalar(0, 0, 255), 2);
cv::putText(m_image_draw, std::to_string(rect.score), cv::Point(rect.rect.x, rect.rect.y), 1, 1,
cv::Scalar(0, 0, 255));
cv::putText(
m_image_draw,
std::to_string(rect.score),
cv::Point(rect.rect.x, rect.rect.y),
1,
1,
cv::Scalar(0, 0, 255));
}
#endif