changed video0 to video2

This commit is contained in:
Cametendo
2026-04-28 20:08:11 +02:00
parent b4a3914794
commit c5246ad358
2 changed files with 4 additions and 4 deletions

View File

@@ -5,7 +5,7 @@ from vision_agent import EldenVision
class UISelector:
def __init__(self):
self.vision = EldenVision(0)
self.vision = EldenVision(2)
self.window_name = "FLUID CALIBRATOR: TAB=Switch, R=Mode, S=SAVE, Q=Quit"
cv2.namedWindow(self.window_name, cv2.WINDOW_NORMAL)
cv2.resizeWindow(self.window_name, 1280, 1280)

View File

@@ -15,9 +15,9 @@ class EldenVision:
self.lock = threading.Lock()
# PRESERVED USER CONFIGS
self.player_hp_roi = (158, 164, 48, 329)
self.player_fp_roi = (163, 169, 49, 160)
self.player_sp_roi = (169, 176, 48, 216)
self.player_hp_roi = (154, 160, 48, 329)
self.player_fp_roi = (160, 166, 49, 160)
self.player_sp_roi = (166, 173, 49, 217)
self.boss_hp_roi = (427, 437, 149, 488)
self.stack_size = stack_size