Skip to content

Commit

Permalink
提高加载中识别阈值
Browse files Browse the repository at this point in the history
  • Loading branch information
ZhaoZuohong committed Nov 6, 2023
1 parent 998817b commit 671281f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arknights_mower/utils/recognize.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def get_scene(self) -> int:
""" get the current scene in the game """
if self.scene != Scene.UNDEFINED:
return self.scene
if self.find('connecting', scope=((self.w//2, self.h//10*8), (self.w//4*3, self.h)), score=0.15) is not None:
if self.find('connecting', scope=((self.w//2, self.h//10*8), (self.w//4*3, self.h)), score=0.2) is not None:
self.scene = Scene.CONNECTING
elif self.find('index_nav', thres=250, scope=((0, 0), (100+self.w//4, self.h//10))) is not None:
self.scene = Scene.INDEX
Expand Down Expand Up @@ -244,7 +244,7 @@ def get_scene(self) -> int:
def get_infra_scene(self)-> int:
if self.scene != Scene.UNDEFINED:
return self.scene
if self.find('connecting', scope=((self.w//2, self.h//10*8), (self.w//4*3, self.h)), score=0.15) is not None:
if self.find('connecting', scope=((self.w//2, self.h//10*8), (self.w//4*3, self.h)), score=0.2) is not None:
self.scene = Scene.CONNECTING
elif self.find('double_confirm') is not None:
if self.find('network_check') is not None:
Expand Down

0 comments on commit 671281f

Please sign in to comment.