From ffa6724397018c44ae14c10c6e09ee09e15ee790 Mon Sep 17 00:00:00 2001 From: uye <99072975+ABA2396@users.noreply.github.com> Date: Fri, 1 Aug 2025 21:56:07 +0800 Subject: [PATCH] =?UTF-8?q?debug:=20=E8=B0=83=E6=95=B4=E8=BE=B9=E6=A1=86?= =?UTF-8?q?=E7=B2=97=E7=BB=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/MaaCore/Vision/Matcher.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/MaaCore/Vision/Matcher.cpp b/src/MaaCore/Vision/Matcher.cpp index dffdd82e4f..38b69a0454 100644 --- a/src/MaaCore/Vision/Matcher.cpp +++ b/src/MaaCore/Vision/Matcher.cpp @@ -44,7 +44,7 @@ Matcher::ResultOpt Matcher::analyze() const rect.y - expanded_roi.y, rect.width, rect.height); - cv::rectangle(cropped, roi_in_cropped, cv::Scalar(0, 0, 255), 2); + cv::rectangle(cropped, roi_in_cropped, cv::Scalar(0, 0, 255), 1); const std::string name = std::filesystem::path(templ_name).stem().string(); const std::string text = name + " " + std::to_string(max_val); const cv::Size text_size = cv::getTextSize(text, cv::FONT_HERSHEY_SIMPLEX, 0.5, 1, nullptr);