fix: algo priority num

This commit is contained in:
Prohurtz 2023-11-11 16:56:17 -06:00
parent ac342f30e9
commit cf707a92c9
2 changed files with 3 additions and 3 deletions

View File

@ -50,8 +50,8 @@ alg_ver = "PallasNekoV3" # memo: Created by PallasNeko on 230929
##############################
save_logfile = False # This setting is disabled when imshow_enable or save_img or save_video is true
imshow_enable = True
save_video = True
imshow_enable = False
save_video = False
VideoCapture_SRC = "/Users/prohurtz/Desktop/t3c.mp4" # "demo2.mp4"
input_is_webcam = False

View File

@ -45,7 +45,7 @@ class TrackingAlgorithmValidationModel(BaseValidationModel):
class TrackingAlgorithmModule(BaseSettingsModule):
def __init__(self, config, widget_id, **kwargs):
super().__init__(config=config, widget_id=widget_id, **kwargs)
self.algo_count = ["1", "2", "3", "4", "5", "6", "7"]
self.algo_count = ["1", "2", "3", "4", "5", "6", "7", "8"]
self.validation_model = TrackingAlgorithmValidationModel
self.gui_BLOB = f"-BLOBFALLBACK{widget_id}-"
self.gui_DADDY = f"-DADDY{widget_id}-"