Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/understand-ai/anonymizer
**ARCHIVED** An anonymizer to obfuscate faces and license plates.
https://github.com/understand-ai/anonymizer
Last synced: about 1 month ago
JSON representation
**ARCHIVED** An anonymizer to obfuscate faces and license plates.
- Host: GitHub
- URL: https://github.com/understand-ai/anonymizer
- Owner: understand-ai
- License: apache-2.0
- Archived: true
- Created: 2018-10-12T18:20:30.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2022-04-11T16:02:12.000Z (over 2 years ago)
- Last Synced: 2024-08-04T01:16:10.426Z (5 months ago)
- Language: Python
- Homepage:
- Size: 389 KB
- Stars: 260
- Watchers: 11
- Forks: 98
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-robotic-tooling - anonymizer - An anonymizer to obfuscate faces and license plates. (Sensor Processing / Image Processing)
README
___
⚠️ **ARCHIVED REPOSITORY** ⚠️
**We decided to archive this repository to make it read-only and indicate that it's no longer actively maintained.**
___# understand.ai Anonymizer [ARCHIVED]
To improve privacy and make it easier for companies to comply with GDPR, we at [understand.ai](https://understand.ai/) decided to open-source our anonymization software and weights for a model trained on our in-house datasets for faces and license plates.
The model is trained with the [Tensorflow Object Detection API](https://github.com/tensorflow/models/tree/master/research/object_detection) to make it easy for everyone to use these weights in their projects.Our anonymizer is used for projects with some of Germany's largest car manufacturers and suppliers,
but we are sure there are many more applications.## Disclaimer
Please note that the version here is not identical to the anonymizer we use in customer projects. This model is an early version in terms of quality and speed. The code is written for easy-of-use instead of speed.
For this reason, no multiprocessing code or batched detection and blurring are used in this repository.This version of our anonymizer is trained to detect faces and license plates in images recorded with sensors
typically used in autonomous vehicles. It will not work on low-quality or grayscale images and will also not work on
fish-eye or other extreme camera configurations.## Examples
![License Plate Example Raw](images/coco02.jpg?raw=true "Title")
![License Plate Anonymized](images/coco02_anonymized.jpg?raw=true "Title")![Face Example Raw](images/coco01.jpg?raw=true "Title")
![Face Example Anonymized](images/coco01_anonymized.jpg?raw=true "Title")## Installation
To install the anonymizer just clone this repository, create a new python3.6 environment and install the dependencies.
The sequence of commands to do all this is```bash
python -m venv ~/.virtualenvs/anonymizer
source ~/.virtualenvs/anonymizer/bin/activategit clone https://github.com/understand-ai/anonymizer
cd anonymizerpip install --upgrade pip
pip install -r requirements.txt
```To make sure everything is working as intended run the test suite with the following command
```bash
pytest
```Running the test cases can take several minutes and is dependent on your GPU (or CPU) and internet speed.
Some test cases download model weights and some perform inference to make sure everything works as intended.## Weights
[weights_face_v1.0.0.pb](https://drive.google.com/file/d/1CwChAYxJo3mON6rcvXsl82FMSKj82vxF)[weights_plate_v1.0.0.pb](https://drive.google.com/file/d/1Fls9FYlQdRlLAtw-GVS_ie1oQUYmci9g)
## Usage
In case you want to run the model on CPU, make sure that you install `tensorflow` instead of `tensorflow-gpu` listed
in the `requirements.txt`.Since the weights will be downloaded automatically all that is needed to anonymize images is to run
```bash
PYTHONPATH=$PYTHONPATH:. python anonymizer/bin/anonymize.py --input /path/to/input_folder --image-output /path/to/output_folder --weights /path/to/store/weights
```from the top folder of this repository. This will save both anonymized images and detection results as json-files to
the output folder.### Advanced Usage
In case you do not want to save the detections to json, add the parameter `no-write-detections`.
Example:```bash
PYTHONPATH=$PYTHONPATH:. python anonymizer/bin/anonymize.py --input /path/to/input_folder --image-output /path/to/output_folder --weights /path/to/store/weights --no-write-detections
```Detection threshold for faces and license plates can be passed as additional parameters.
Both are floats in [0.001, 1.0]. Example:```bash
PYTHONPATH=$PYTHONPATH:. python anonymizer/bin/anonymize.py --input /path/to/input_folder --image-output /path/to/output_folder --weights /path/to/store/weights --face-threshold=0.1 --plate-threshold=0.9
```By default only `*.jpg` and `*.png` files are anonymized. To for instance only anonymize jpgs and tiffs,
the parameter `image-extensions` can be used. Example:```bash
PYTHONPATH=$PYTHONPATH:. python anonymizer/bin/anonymize.py --input /path/to/input_folder --image-output /path/to/output_folder --weights /path/to/store/weights --image-extensions=jpg,tiff
```The parameters for the blurring can be changed as well. For this the parameter `obfuscation-kernel` is used.
It consists of three values: The size of the gaussian kernel used for blurring, it's standard deviation and the size
of another kernel that is used to make the transition between blurred and non-blurred regions smoother.
Example usage:```bash
PYTHONPATH=$PYTHONPATH:. python anonymizer/bin/anonymize.py --input /path/to/input_folder --image-output /path/to/output_folder --weights /path/to/store/weights --obfuscation-kernel="65,3,19"
```## Attributions
An image for one of the test cases was taken from the COCO dataset.
The pictures in this README are under an [Attribution 4.0 International](https://creativecommons.org/licenses/by/4.0/legalcode) license.
You can find the pictures [here](http://farm4.staticflickr.com/3081/2289618559_2daf30a365_z.jpg) and [here](http://farm8.staticflickr.com/7062/6802736606_ed325d0452_z.jpg).