Skip to content

Commit 2b84213

Browse files
committed
fix build
1 parent eba4b5d commit 2b84213

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

SerialPrograms/Source/PokemonLZA/Inference/PokemonLZA_ButtonDetector.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44
*
55
*/
66

7+
#include <iostream>
78
#include "Kernels/Waterfill/Kernels_Waterfill_Types.h"
89
#include "CommonFramework/GlobalSettingsPanel.h"
910
#include "CommonFramework/VideoPipeline/VideoOverlayScopes.h"
1011
#include "CommonTools/Images/WaterfillUtilities.h"
1112
#include "CommonTools/ImageMatch/WaterfillTemplateMatcher.h"
1213
#include "PokemonLZA_ButtonDetector.h"
1314

14-
// #include <iostream>
1515
// using std::cout;
1616
// using std::endl;
1717

@@ -91,8 +91,8 @@ class ButtonMatcher : public ImageMatch::WaterfillTemplateMatcher{
9191
size_t min_height = m_min_height * input_resolution.height / 2160;
9292

9393
if (PreloadSettings::debug().IMAGE_TEMPLATE_MATCHING){
94-
cout << "???? ButtonMatcher::check_image() ???? min size " << min_width << " x " << min_height
95-
<< " got " << image.width() << " x " << image.height() << endl;
94+
std::cout << "???? ButtonMatcher::check_image() ???? min size " << min_width << " x " << min_height
95+
<< " got " << image.width() << " x " << image.height() << std::endl;
9696
}
9797
return image.width() >= min_width && image.height() >= min_height;
9898
};

0 commit comments

Comments
 (0)