Transformer
Image

Image Data

🚧 WIP - This section is still a work in progress and not finished yet.

Functions

purpose({
  transformers: [image.blur_faces()],
});

This transformer will automatically blur all faces in an image. We utilize our faceblur server (opens in a new tab). To run it, you can use the following command:

docker build -t faceblur . && docker run -d -p 5000:5000 -t faceblur

The server is based on yolov8-face (opens in a new tab) by derronqi (opens in a new tab). We wrapped a simple flask server around it. The integration with our proxy is still being worked on.