@@ -23,7 +23,7 @@ class DestinationMarkerMatcher : public ImageMatch::WaterfillTemplateMatcher{
2323public:
2424
2525 DestinationMarkerMatcher () : WaterfillTemplateMatcher(
26- " PokemonSV/Map/DestinationMarkerIcon-Template.png" , Color(180 ,80 ,0 ), Color(255 , 130 , 50 ), 50
26+ " PokemonSV/Map/DestinationMarkerIcon-Template.png" , Color(180 ,80 ,0 ), Color(255 , 130 , 70 ), 50
2727 ){
2828 m_aspect_ratio_lower = 0.8 ;
2929 m_aspect_ratio_upper = 1.2 ;
@@ -42,7 +42,7 @@ class DestinationMarkerYellowMatcher : public ImageMatch::WaterfillTemplateMatch
4242public:
4343
4444 DestinationMarkerYellowMatcher () : WaterfillTemplateMatcher(
45- " PokemonSV/Map/DestinationMarkerIcon-Yellow.png" , Color(180 ,80 ,0 ), Color(255 , 200 , 50 ), 50
45+ " PokemonSV/Map/DestinationMarkerIcon-Yellow.png" , Color(180 ,80 ,0 ), Color(255 , 200 , 70 ), 50
4646 ){
4747 m_aspect_ratio_lower = 0.8 ;
4848 m_aspect_ratio_upper = 1.2 ;
@@ -82,7 +82,7 @@ bool DestinationMarkerDetector::detect(const ImageViewRGB32& screen){
8282
8383std::vector<ImageFloatBox> DestinationMarkerDetector::detect_all (const ImageViewRGB32& screen) const {
8484 const std::vector<std::pair<uint32_t , uint32_t >> filters = {
85- {combine_rgb (180 , 80 , 0 ), combine_rgb (255 , 130 , 50 )},
85+ {combine_rgb (180 , 80 , 0 ), combine_rgb (255 , 130 , 70 )},
8686
8787 };
8888
@@ -119,7 +119,7 @@ std::vector<ImageFloatBox> DestinationMarkerDetector::detect_all(const ImageView
119119
120120std::vector<ImageFloatBox> DestinationMarkerDetector::detect_all_yellow (const ImageViewRGB32& screen) const {
121121 const std::vector<std::pair<uint32_t , uint32_t >> filters = {
122- {combine_rgb (180 , 100 , 0 ), combine_rgb (255 , 190 , 50 )}, // to detect the marker within the minimap, when the radar beam is covering the marker
122+ {combine_rgb (180 , 100 , 0 ), combine_rgb (255 , 190 , 70 )}, // to detect the marker within the minimap, when the radar beam is covering the marker
123123 };
124124
125125
0 commit comments