Døm

Results 3 comments of Døm

我将TimeTaskTool.py下的timeCheck函数中这部分屏蔽掉后就正常了,至于什么原因还没深入去看。 ``` #重新登录、未登录,均跳过 # if self.isRelogin: # print("登录跳出") # return ```

process_video函数下的 ``` face_img = crop_and_pad(face_img, crop_rect) face_mask = crop_and_pad(face_mask, crop_rect) ``` 改为 ``` face_img,crop_rect = crop_and_pad(face_img, crop_rect) face_mask,crop_rect = crop_and_pad(face_mask, crop_rect) ```

[webgui.zip](https://github.com/user-attachments/files/16402010/webgui.zip) 尝试下我这个版本,我已经使用了acc模型和解决error: (-5:Bad argument) in function 'resize'问题。 修改细节如下: 关于步骤为6和30的问题,请修改default_values中的steps。 然后 ``` face_img,crop_rect = crop_and_pad(face_img, crop_rect) face_mask,crop_rect = crop_and_pad(face_mask, crop_rect) ``` 修改为 ``` face_img,_ = crop_and_pad(face_img, crop_rect) face_mask,_ = crop_and_pad(face_mask, crop_rect)...