InvokeAI/invokeai/frontend/web/src
Lincoln Stein f060e321eb
NSFW checker and watermark nodes (#3923)
## What type of PR is this? (check all applicable)

- [ ] Refactor
- [ X] Feature
- [ ] Bug Fix
- [ ] Optimization
- [ ] Documentation Update
- [ ] Community Node Submission


## Have you discussed this change with the InvokeAI team?
- [ X] Yes
- [ ] No, because:

      
## Have you updated all relevant documentation?
- [X ] Yes
- [] No

## Description

This PR adds NSFW checker and invisible watermark fields. The NSFW
checker takes an image input and produces an image output. If NSFW
content is detected, the output image will be blurred and a "caution"
icon pasted into its upper left corner. A boolean `active` field
controls whether the checker is active. If turned off it simply returns
a copy of the image.

The invisible watermark node adds an invisible text to the image,
defaulting to "InvokeAI". To decode the watermark use the
`invisible-watermark` command, which is part of the
`invisible-watermark` library:

```
$ invisible-watermark -v -a decode -t bytes -m dwtDct -l 64 ./bluebird-watermark.png 
decode time ms: 14.129877090454102
InvokeAI
```

Note that the `-l` (length) argument is mandatory. It is set to 64 here
because the watermark `InvokeAI` is 8 bytes/64 bits long. The length
must match in order for the watermark to be decoded correctly.

Both nodes are now incorporated into the linear Text2Image and
Image2Image UIs, including the canvas. They are not implemented for
inpaint currently.

The nodes can be disabled with configuration options:
```
invisible_watermark: false
nsfw_checker: false
```
or at launch time with `--no-invisible_watermark` and
`--no-nsfw_checker`.
2023-07-26 10:14:10 -04:00
..
app feat(ui): add nsfw & watermark to linear ui 2023-07-26 18:20:20 +10:00
assets/images feat(ui): migrate theming to chakra ui 2023-03-06 20:03:39 +11:00
common Merge branch 'main' into feat/safety-checker-node 2023-07-26 06:39:46 -04:00
features NSFW checker and watermark nodes (#3923) 2023-07-26 10:14:10 -04:00
mantine-theme fix(ui): fix missing mantineTheme, fixes fonts 2023-07-14 23:16:05 +10:00
services feat(ui): add nsfw & watermark to linear ui 2023-07-26 18:20:20 +10:00
theme feat(ui): tweak menu style, increase icon size 2023-07-27 00:12:23 +10:00
i18.d.ts fix(ui): improve IDE TS performance by not resolving JSON 2023-06-28 23:55:44 -04:00
i18n.ts fix(ui): fix all eslint & prettier issues 2023-07-22 23:45:24 +10:00
index.ts feat: consolidated app nav to settings & dropdown 2023-07-27 00:12:23 +10:00
main.tsx feat(ui): rename main app components 2023-04-28 21:56:43 +10:00
vite-env.d.ts all files migrated; tweaks needed 2023-03-03 00:02:15 -05:00