You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Unofficial python API for [DeepStack](https://python.deepstack.cc/). Provides class for making requests to the object detection endpoint, and functions for processing the result. See the Jupyter notebooks for usage.
7
-
Run deepstack (CPU, noAVX mode):
6
+
Unofficial python API for [DeepStack](https://python.deepstack.cc/). Provides classes for making requests to the object detection & face detection/recognition endpoints. Also includes some helper functions for processing the results. See the Jupyter notebooks for usage.
7
+
8
+
Run deepstack with all three endpoints active (CPU, noAVX mode):
9
+
```
10
+
docker run \
11
+
-e VISION-SCENE=True \
12
+
-e VISION-DETECTION=True \
13
+
-e VISION-FACE=True \
14
+
-v localstorage:/datastore \
15
+
-p 5000:5000 \
16
+
-e API-KEY="" \
17
+
--name deepstack deepquestai/deepstack:noavx
18
+
```
19
+
Check deepstack is running using curl (from root of this repo):
20
+
```
21
+
curl -X POST -F image=@tests/images/test-image3.jpg 'http://localhost:5000/v1/vision/detection'
8
22
```
9
-
docker run -e VISION-DETECTION=True -e VISION-FACE=True -e MODE=High -d \
10
-
-v localstorage:/datastore -p 5000:5000 \
11
-
-e API-KEY="Mysecretkey" \
12
-
--name deepstack deepquestai/deepstack:noavx
23
+
If all goes well you should see the following returned:
0 commit comments