otamapy is Python Interface for otama.
Project description
About
otamapy is Python Interface for otama (otama is CBIR.).
Installation
from pip:
$ pip install --upgrade otamapy
from easy_install:
$ easy_install -ZU otamapy
Requirements
Installation otama
on MacOSX:
$ sh tools/install-libotama-for-macosx.sh
on Linux:
$ sh tools/install-libotama.sh
Usage
config file (example.conf)
{
'namespace': 'testnamespace',
'driver': {'name': 'color', 'data_dir': './data', 'color_weight': 0.2},
'database': {'driver': 'sqlite3', 'name': './data/store.sqlite3'}
}
store to database, and search from database.
# store_and_search.py
from otama import Otama
db = Otama.open('example.conf')
kvs = {}
db.create_table()
for filename in ('foo.jpg', 'bar.jpg'):
kvs[db.insert(filename)] = filename
for result in db.search(10, 'foo.jpg'):
key = result['id']
print("sim=%.3f, file=%s" % (result['similarity'], kvs[key]))
$ python store_and_search.py
sim=1.000, file=foo.jpg
sim=0.969, file=bar.jpg
see examples .
Links
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
otamapy-0.3.2.tar.gz
(7.5 kB
view details)
File details
Details for the file otamapy-0.3.2.tar.gz
.
File metadata
- Download URL: otamapy-0.3.2.tar.gz
- Upload date:
- Size: 7.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4756d9b30bcb2c01ffefb20eb9b3834ba9d474f76abb135c1054ddbb8f1d0d53 |
|
MD5 | c4ec107a60aa84adacc7ccac4e27a921 |
|
BLAKE2b-256 | 92f0689be95db0e8facbc03f06e10e7834bc2af707ed46f7cf35c5dd1455d5fb |