Analysis updated 2026-05-18
Search through a folder of screenshots by the text visible inside them.
Automatically index new screenshots as you take them without manual sorting.
Build a private, offline archive of reference screenshots for research or notes.
| itssaisathan/screenshot-search-engine | amaravijayalakshmi216-collab/crop-recommendation-system | hermes-labs-ai/zer0dex | |
|---|---|---|---|
| Stars | 52 | 52 | 52 |
| Language | Python | Python | Python |
| Setup difficulty | moderate | moderate | hard |
| Complexity | 2/5 | 2/5 | 4/5 |
| Audience | general | researcher | developer |
Figures from each repo's GitHub metadata at analysis time.
Requires installing Tesseract-OCR separately before the app can extract text from images.
Screenshot Search Engine is a fully offline desktop application that indexes your screenshots so you can search through them by their content. It solves a familiar problem: knowing you captured something useful in a screenshot at some point, but having no way to find it again without scrolling through hundreds of images. The app watches a folder you choose and automatically indexes any new screenshots added to it, running the indexing in the background so the interface does not freeze. Each image is read with OCR (Optical Character Recognition, software that pulls text out of a picture) using PyTesseract, with OpenCV used beforehand to clean up the image and improve accuracy on things like app screenshots and UI text. The extracted text, file paths, and a perceptual hash of each image are stored in a local SQLite database, and that hash is used to detect and skip duplicate screenshots. Searching combines exact keyword matches on filenames and extracted text with fuzzy matching, so small typos in a search still find the right result. The interface is a modern, dark mode friendly desktop window built with CustomTkinter, and everything runs locally: no API keys, no cloud services, and no accounts. Because the OCR engine depends on Tesseract-OCR, that has to be installed separately before the app works, and the README's setup instructions are written specifically for Windows. The project can also be packaged into a standalone Windows executable with PyInstaller, though Tesseract itself still needs to be present on the machine running it. This is aimed at someone who takes a lot of screenshots for reference, research, or note-taking and wants to retrieve them by what they actually contain rather than by filename or date. Planned future additions mentioned in the README include semantic search and finding visually similar screenshots, neither of which is built yet.
An offline Python desktop app that uses OCR to make your screenshots searchable by the text they contain.
Mainly Python. The stack also includes Python, CustomTkinter, SQLite.
No license information is stated in the source, so usage terms are unknown.
Setup difficulty is rated moderate, with roughly 30min to a first successful run.
Mainly general.
This repo across BitVibe Labs
Verify against the repo before relying on details.