#468 · Primary category: Computer Vision
CBIR
🏞 A content-based image retrieval (CBIR) system
Project last updated:07/07/22
GitHub Stars
653
Forks
211
Contributors
1
License
Other
Why we included this project
If you've ever wanted to see how content-based image retrieval works under the hood without wading through a research paper, this is a good place to start. It's a compact, readable reference implementation of the classic pipeline: extract a feature from a query image, compare it against a pre-built database of image features, and return the closest matches. The code is organized as modular feature extractors, including color histograms, Gabor filters for texture, HOG and DAISY for shape, and deep features from VGG and ResNet, with a feature-fusion step and random projection for dimensionality reduction. Because each feature is its own module, you can swap approaches and see how each one affects retrieval quality. The included evaluation script computes mean average precision, so you can measure which feature combination actually performs best on your own dataset. It's a solid starting point for students and engineers who want to understand and prototype CBIR before moving to a heavier production stack.
Articles for this project
No articles for this project yet.
To suggest a topic or contribute an article, contact us.
Related projects in this category
opencv
Open Source Computer Vision Library
RuView
π RuView turns commodity WiFi signals into real-time spatial intelligence, vital sign monitoring, and presence detection — all without a single pixel of video.
PaddleOCR
Turn any PDF or image document into structured data for your AI. A powerful, lightweight OCR toolkit that bridges the gap between images/PDFs and LLMs. Supports 100+ languages.
MinerU
Transforms complex documents like PDFs and Office docs into LLM-ready markdown/JSON for your Agentic workflows.
tesseract
Tesseract Open Source OCR Engine (main repository)