You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a working "find image based on perceptual hash" system in a project I am working on. It also does fuzzy searching for in-memory hashes.
Soon, I want to expand this to storing the hashes so I can search them later. I can do this, now, without an issue but only if I'm searching for exact hashes using simple where clauses in my main database.
I've been a long time szuru user and I remember when the project migrated from using elasticsearch (with i assume fuzzy query) to no dependencies!
From looking at the code now my rough understanding of how reverse image search is working:
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I think this is a question mostly for @sgsunder
I have a working "find image based on perceptual hash" system in a project I am working on. It also does fuzzy searching for in-memory hashes.
Soon, I want to expand this to storing the hashes so I can search them later. I can do this, now, without an issue but only if I'm searching for exact hashes using simple
where
clauses in my main database.I've been a long time szuru user and I remember when the project migrated from using elasticsearch (with i assume fuzzy query) to no dependencies!
From looking at the code now my rough understanding of how reverse image search is working:
I'm trying to avoid making my project dependent on elasticsearch, if possible, so what you've done here is super relevant.
My questions:
Thanks!
Beta Was this translation helpful? Give feedback.
All reactions