Simple image search engine package.
Project description
📌 Install Picachain
Create a local datastore with ChromaDB for image search.
With pip
:
pip install picachain
🚀 Getting Started
With less than 10 lines of code, create an image search engine with the help of picachain and chromadb.
from PIL import Image
import matplotlib.pyplot as plt
# import from picachain
from picachain.datastore import ChromaStore
from picachain.embedding import ClipEmbedding
from picachain.retriever import ImageRetriever
from picachain.search import ImageSearch
img = Image.open("image-path") # query image
images = [Image.open(os.path.join("images-path", image)) for image in os.listdir("images-path")] # image collection
# initiate embedding, datastore and retriever
embedding = ClipEmbedding()
datastore = ChromaStore("test-collection")
retriever = ImageRetriever(datastore, embedding, images)
image_search = ImageSearch(retriever=retriever, embedding=embedding, query_img=img)
result = image_search.search_relevant_images(top_k=3) # get top 3 relevant images
for img, score in result: # [(img, score), (img, score)]
plt.imshow(img)
plt.show()
It is under continuous development so currently supports only ChromaDB. We are working on integrating all popular vector databases such as Pinecone, Weaviate, etc.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
picachain-0.1.30.tar.gz
(8.0 kB
view details)
Built Distribution
File details
Details for the file picachain-0.1.30.tar.gz
.
File metadata
- Download URL: picachain-0.1.30.tar.gz
- Upload date:
- Size: 8.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.2 CPython/3.8.10 Linux/5.15.0-101-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8b29e81de2e1c4a5c2eb8341438a98c388cac2046cd15dfca7377a69b507f0e4 |
|
MD5 | 57fde4582e9832813a0ebedbfed443ce |
|
BLAKE2b-256 | 5ba9e22ebc95923cf2b5754e21be35d66c3291091db37425d8852c9375246be5 |
File details
Details for the file picachain-0.1.30-py3-none-any.whl
.
File metadata
- Download URL: picachain-0.1.30-py3-none-any.whl
- Upload date:
- Size: 11.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.2 CPython/3.8.10 Linux/5.15.0-101-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3e39997f18214f8499b373101d2b8580d251c8d6cb3c418f479079b295ceabbe |
|
MD5 | 88480ccaca49cc0adf2bf0af8ed11086 |
|
BLAKE2b-256 | 23e7f10b622a92fdfb58321f2a524d4c99c1b5202b3464aff855dbbc1b4e67f7 |