From 19a2b546edca3411916d974b93afc22423e33261 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?DOTTEL=20Ga=C3=ABl?= Date: Fri, 18 Apr 2025 16:08:08 +0200 Subject: [PATCH] Fix both ingo grinder --- .../Inference/Battles/PokemonLA_BattlePokemonSwitchDetector.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SerialPrograms/Source/PokemonLA/Inference/Battles/PokemonLA_BattlePokemonSwitchDetector.cpp b/SerialPrograms/Source/PokemonLA/Inference/Battles/PokemonLA_BattlePokemonSwitchDetector.cpp index 530c6222f4..fdaae377c7 100644 --- a/SerialPrograms/Source/PokemonLA/Inference/Battles/PokemonLA_BattlePokemonSwitchDetector.cpp +++ b/SerialPrograms/Source/PokemonLA/Inference/Battles/PokemonLA_BattlePokemonSwitchDetector.cpp @@ -57,7 +57,7 @@ bool BattlePokemonSwitchDetector::process_frame(const ImageViewRGB32& frame, Wal } const ImageStats white_3 = image_stats(extract_box_reference(frame, m_white_bg_3)); - if(is_white(white_3, 500, 10) == false){ + if(is_white(white_3, 500, 15) == false){ // std::cout << "no white_3" << std::endl; m_detected.store(false, std::memory_order_release); return false;