-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Question] Custom watermark data ? #1
Comments
Hi, cool to hear you stumbled upon this repo :) There's nothing stopping you from encoding (binary) data into the watermark, you can populate the MarkBuf with whatever you want, do note the comment there:
The second problem is that the data is modulated on the strongest coefficients, which effectively means that the first part of your data will be embedded much more strongly than the later parts of your data. This algorithm is really made to encode a fingerprint, where the fingerprints are just all stored in a database. With fully random fingerprints you get a strong spike in correlation if one is matched. Binary data like ip address will probably result in I expect with some searching you'll be able to find more modern algorithms that allow you to encode data robustly. The one from this paper is by now more than 25 years old. |
Thanks for the answer. |
Yeah, I think that's better than trying to encode data into the watermark directly. |
Hello,
Really interesting project but I wanted to know if there is a way to add custom data to the watermark ?
Like adding a user ID or IP or something like this ?
Since the encoding is quite fast I was wondering if I could watermark images on the fly and identify who reposted the original one.
Thanks
The text was updated successfully, but these errors were encountered: