Interact with the Vuforia Web Services (VWS) API.
Project description
vws-python
Python library for the Vuforia Web Services (VWS) API and the Vuforia Web Query API.
Installation
pip install vws-python
This is tested on Python 3.7+. Get in touch with adamdangoor@gmail.com if you would like to use this with another language.
Getting Started
import io
from vws import VWS, CloudRecoService
vws_client = VWS(server_access_key='...', server_secret_key='...')
cloud_reco_client = CloudRecoService(client_access_key='...', client_secret_key='...')
name = 'my_image_name'
with open('/path/to/image.png', 'rb') as my_image_file:
my_image = io.BytesIO(my_image_file.read())
target_id = vws_client.add_target(
name=name,
width=1,
image=my_image,
)
vws_client.wait_for_target_processed(target_id=target_id)
matching_targets = cloud_reco_client.query(image=my_image)
assert matching_targets[0]['target_id'] == target_id
Full Documentation
See the full documentation.
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
VWS Python-2019.11.7.2.tar.gz
(26.4 kB
view details)
Built Distribution
File details
Details for the file VWS Python-2019.11.7.2.tar.gz
.
File metadata
- Download URL: VWS Python-2019.11.7.2.tar.gz
- Upload date:
- Size: 26.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.37.0 CPython/3.7.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 041d57e0174394163fcffc1539e2e7f1d408b1fa07ddd409d53966fcec1c324c |
|
MD5 | d893a1a048569ad44d2325af03393b97 |
|
BLAKE2b-256 | 06d094e14540e7a50ca9a4e9e30b36684870c567b08481acd864293e929b9244 |
File details
Details for the file VWS_Python-2019.11.7.2-py2.py3-none-any.whl
.
File metadata
- Download URL: VWS_Python-2019.11.7.2-py2.py3-none-any.whl
- Upload date:
- Size: 12.9 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.37.0 CPython/3.7.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 675ba2c146883e8a94dea12cb7873dcc7aadab36d82c4d77a5d7f83e71d5ba93 |
|
MD5 | 6693b71e1d618e7856696944425a5fb8 |
|
BLAKE2b-256 | 891b53c19b0bb3e295d0c12312c8ec60c322ead60bf506cc7caf0775cdf968c8 |