view the rest of the comments
Selfhosted
A place to share alternatives to popular online services that can be self-hosted without giving up privacy or locking you into a service you don't control.
Rules:
-
Be civil.
-
No spam.
-
Posts are to be related to self-hosting.
-
Don't duplicate the full text of your blog or readme if you're providing a link.
-
Submission headline should match the article title.
-
No trolling.
-
Promotion posts require active participation, with an account that is at least 30 days old. F/LOSS without a paywall has exceptions, with requirements. See the rules link for details. Tags [CBH] or [AIP] are required, see the links in Rule 8 for details.
-
AI-related discussions and AI-involved promotional posts have additional requirements for tagging, as noted in Rule 7 and the AI & Promotional Post Expanded Rules post, and find example disclosures here.
Resources:
- selfh.st Newsletter and index of selfhosted software and apps
- awesome-selfhosted software
- awesome-sysadmin resources
- Self-Hosted Podcast from Jupiter Broadcasting
Any issues on the community? Report it using the report flag.
Questions? DM the mods!
It's more than just basic hash matching because it has to catch content even if it's been resized, cropped, reduced in quality (lower JPEG quality with more artifacts), colour balance change, etc.
Well, we have hashing algorithms that do exactly that, like phash for example.
Definitely. A lot of the good algorithms used by big services are proprietary though, unfortunately.
Can you point me to some of them? I'm quite interested in visual hashing.
Microsoft's PhotoDNA is probably the most well-known. Every major service that has user-generated content uses it. Last I checked, it wasn't open-source. It was built for detecting CSAM, but it's really just a general-purpose similarity hashing algorithm.
Meta has some algorithms that are open-source: https://about.fb.com/news/2019/08/open-source-photo-video-matching/
Google has CSAI Match for hash-matching of videos and Google Content Safety API for classification of new content, but both are proprietary.
There's better approaches than hashing. For comparing images I am calculating "distance" in tensors between them. This can match even when compression artifacts are involved or the images are slightly altered.
Ah, of course - that's unfortunate, but thanks for the pointer.