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.12+. Get in touch with adamdangoor@gmail.com if you would like to use this with another language.
Getting Started
import pathlib
from vws import VWS, CloudRecoService
server_access_key = '[server-access-key]'
server_secret_key = '[server-secret-key]'
client_access_key = '[client-access-key]'
client_secret_key = '[client-secret-key]'
vws_client = VWS(
server_access_key=server_access_key,
server_secret_key=server_secret_key,
)
cloud_reco_client = CloudRecoService(
client_access_key=client_access_key,
client_secret_key=client_secret_key,
)
name = 'my_image_name'
image = pathlib.Path('high_quality_image.jpg')
with image.open(mode='rb') as my_image_file:
target_id = vws_client.add_target(
name=name,
width=1,
image=my_image_file,
active_flag=True,
application_metadata=None,
)
vws_client.wait_for_target_processed(target_id=target_id)
matching_targets = cloud_reco_client.query(image=my_image_file)
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-2024.9.3.1.tar.gz
(33.6 kB
view details)
Built Distribution
File details
Details for the file vws_python-2024.9.3.1.tar.gz
.
File metadata
- Download URL: vws_python-2024.9.3.1.tar.gz
- Upload date:
- Size: 33.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 47d1302fe65716fbd3d3442d911828eb6b517fe29c6c927654ba2b01c2ff3e19 |
|
MD5 | 275d84ad5fc40f478dda30f4fc10937b |
|
BLAKE2b-256 | e55f28e2c55122840df00392aec2318c293c6ca7fe9e425083194fe4d159af1b |
File details
Details for the file vws_python-2024.9.3.1-py2.py3-none-any.whl
.
File metadata
- Download URL: vws_python-2024.9.3.1-py2.py3-none-any.whl
- Upload date:
- Size: 15.9 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 942eef1096b4f408217d2869157873317a113b5fae40d13c4a8624990d63d2c4 |
|
MD5 | 4f50eb58232d6b98f6dd23a092667454 |
|
BLAKE2b-256 | f80dd93cb32c3a15856f39821bb2018e5ef3969749e60ee439054f6222fe0e18 |