censor-this is a Python command line tool that allows you to censor words in an image.
Install Tesseract https://github.com/tesseract-ocr/tessdoc/blob/main/Installation.md#introduction
pip install censor-thiscensor-this add [word]Adds a "censor word".
- word - The "censor word" that will be added.
[required]
censor-this remove [word]Removes a censor word.
- word - The censor word that will be removed.
[required]
censor-this clearRemoves all censor words.
censor-this censor-wordsPrints all censor words.
censor-this image [path]Censors all censor words from an image or directory of images with blur, then outputs the results to ./censor-this-output.
- path - The path to the image/directory.
[example: this/is/the/path/to/the/image.png] [required] - --censor-all | --all | -a - Censor all words in an image.
[example: --censor-all] - --min-conf | --conf | -m - The minimum confidence that will be required for a word to be censored.
[example: --min-conf=40.0] [default: 90.0] FLOAT - --bar-color | --color | -c - The color the censor bar will be. When not present censor bar will default to blur. Must be in hex format.
[example: --bar-color=#FFA200 ] [default: None] TEXT
- Add words that you want to censor.
censor-this add best # adding best to censor words
censor-this add worst # adding worst to censor words
censor-this add age # adding age to censor words
censor-this add foolishness # adding foolishness to censor words- Censor the words in the image.
censor-this image ./imgs/example.png --bar-color=#FFA200- Retrieve output from ./censor-this-output.

