We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f701d6e commit 97bd70fCopy full SHA for 97bd70f
src/vws/query.py
@@ -27,7 +27,17 @@ def __init__(
27
28
def query(self, image: io.BytesIO) -> str:
29
"""
30
- TODO docstring
+ Use the Vuforia Web Query API to make an Image Recognition Query.
31
+
32
+ See
33
+ https://library.vuforia.com/articles/Solution/How-To-Perform-an-Image-Recognition-Query
34
+ for parameter details.
35
36
+ Args:
37
+ image: The image to make a query against.
38
39
+ Returns:
40
+ An ordered list of target details of matching targets.
41
42
image_content = image.getvalue()
43
body = {
tests/test_query.py
@@ -5,8 +5,6 @@
5
import io
6
import uuid
7
8
-import pytest
9
-
10
from vws import VWS, CloudRecoService
11
12
0 commit comments