(req, img, e, tools)
| 1026 | } |
| 1027 | |
| 1028 | function onFixFacesClick(req, img, e, tools) { |
| 1029 | let path = gfpganModelField.value |
| 1030 | let filterName = path.toLowerCase().includes("gfpgan") ? "gfpgan" : "codeformer" |
| 1031 | let statusText = "Fixing faces with " + filterName |
| 1032 | applyInlineFilter(filterName, path, {}, img, statusText, tools) |
| 1033 | } |
| 1034 | |
| 1035 | function onContinueDrawingClick(req, img) { |
| 1036 | enqueueImageVariationTask(req, img, { |
nothing calls this directly
no test coverage detected