diff --git a/buildspec.json b/buildspec.json index 5930e95..5e7a872 100644 --- a/buildspec.json +++ b/buildspec.json @@ -38,7 +38,7 @@ }, "name": "obs-pokemon-sv-screen-builder", "displayName": "OBS Pokémon SV Screen Builder", - "version": "0.7.0", + "version": "0.7.1", "author": "Kaito Udagawa", "website": "https://github.com/umireon/obs-pokemon-sv-screen-builder", "email": "umireon@gmail.com", diff --git a/src/Recognizers/ResultRecognizer.hpp b/src/Recognizers/ResultRecognizer.hpp index 9f6944b..3adce4c 100644 --- a/src/Recognizers/ResultRecognizer.hpp +++ b/src/Recognizers/ResultRecognizer.hpp @@ -26,8 +26,6 @@ class ResultRecognizer { double maxVal, total = static_cast(imageHSV.total()); cv::Point maxIdx; cv::minMaxLoc(hist, nullptr, &maxVal, nullptr, &maxIdx); - obs_log(LOG_INFO, "ResultRecognizer: %d %f %d", total, maxVal, - maxIdx.y); if (maxVal > total * winRatio && maxIdx.y == winMaxIndex) { return "WIN"; } else if (maxVal > total * loseRatio &&