Skip to content

Commit b0b21b5

Browse files
committed
Relax OCR threshold.
1 parent 51485a6 commit b0b21b5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

SerialPrograms/Source/CommonFramework/Globals.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ namespace PokemonAutomation{
2626
const bool IS_BETA_VERSION = true;
2727
const int PROGRAM_VERSION_MAJOR = 0;
2828
const int PROGRAM_VERSION_MINOR = 58;
29-
const int PROGRAM_VERSION_PATCH = 1;
29+
const int PROGRAM_VERSION_PATCH = 2;
3030

3131
const std::string PROGRAM_VERSION_BASE =
3232
"v" + std::to_string(PROGRAM_VERSION_MAJOR) +

SerialPrograms/Source/PokemonSV/Inference/Picnics/PokemonSV_SandwichIngredientDetector.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ class SandwichCondimentMatcher : public ImageMatch::CroppedImageDictionaryMatche
133133

134134
class SandwichFillingOCR : public OCR::SmallDictionaryMatcher{
135135
public:
136-
static constexpr double MAX_LOG10P = -2.0;
136+
static constexpr double MAX_LOG10P = -1.5;
137137
static constexpr double MAX_LOG10P_SPREAD = 0.5;
138138

139139
public:

0 commit comments

Comments
 (0)