Some edits on the UI

- Grouped the face enhancers
- Make the mouth mask just a slider
- Removed the redundant switches
This commit is contained in:
Kenneth Estanislao
2026-03-13 22:03:28 +08:00
parent 30b27c2b71
commit 3c8b259a3f
5 changed files with 176 additions and 185 deletions
+1 -1
View File
@@ -28,7 +28,7 @@ def get_face_analyser() -> Any:
FACE_ANALYSER = insightface.app.FaceAnalysis(
name='buffalo_l',
providers=modules.globals.execution_providers,
allowed_modules=['detection', 'recognition']
allowed_modules=['detection', 'recognition', 'landmark_2d_106']
)
FACE_ANALYSER.prepare(ctx_id=0, det_size=(320, 320))
return FACE_ANALYSER