Watermark remover in Python (or C++)

Westexotic

Newbie
Joined
Jun 2, 2024
Messages
13
Reaction score
6
Hi guys,
As I'm planning to download a good amount of pics (mostly nsfw ones) and as some of them are watermark protected I'm looking for a Python Package that would allow me to send the picture through it and retrieve the version with the watermark removed. I already saw some on the internet but they are all CLI tools and not only python package (actually one is a package but it requires to use google collab to ultimately build a command line tool so it doesn't suit my needs either). Do any one of you know where I could retrieve such a package?
 
There are some deep learning models specifically trained for watermark removal. U-Net models or GANs (Generative Adversarial Networks) for example.

A popular library that can help with this is tensorflow or pytorch, but you’d need a pre-trained model or the ability to train one.
 
Back
Top