Skip to content

Commit af10ce2

Browse files
authored
fix tests (#381)
1 parent 32d43b6 commit af10ce2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

SerialPrograms/Source/PokemonSV/Inference/Dialogs/PokemonSV_DialogDetector.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ bool DialogBoxDetector::detect(const ImageViewRGB32& screen) const{
6666

6767
ImageStats stats_border_bot = image_stats(extract_box_reference(screen, m_border_bot));
6868
// cout << stats_border_bot.average << stats_border_bot.stddev << endl;
69-
if (stats_border_bot.stddev.sum() < 100){
69+
if (stats_border_bot.stddev.sum() < 50){
7070
return !m_true_if_detected;
7171
}
7272

0 commit comments

Comments
 (0)