File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
SerialPrograms/Source/PokemonLZA/Inference Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 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 };
You can’t perform that action at this time.
0 commit comments