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
* Can (and perhaps should) be ran remotely relatively to the docker-compose.
42
42
* Make sure to install requirements with `pip3 install -r ./ui/python/requirements.txt`
43
-
* Then run with `cd ./ui/python && python3 ALPRDemo.py`
43
+
* Then run with `cd ./ui/python && python3 ALPRUI.py`
44
44
45
45
## General
46
46
@@ -59,4 +59,14 @@ If you have an NVIDIA GPU installed and properly configured, you can run the fol
59
59
SIO_DOCKER_RUNTIME=nvidia docker compose up -d
60
60
```
61
61
62
+
## OS Compatibility
63
+
64
+
`SIO_DOCKER_TAG_VARIANT` environment variable used in `docker-compose` controls the flavor of SIO analytics container image. While on x86 systems thing largely work without setting it, on Jetson-based system, set it to the value most compatible with your base OS.
65
+
66
+
*`-r32.4.3-arm64v8` (built for hardware running Jetpack 4.4)
67
+
*`-r32.7.3-arm64v8` (built for hardware running Jetpack 4.6)
68
+
*`-r35.3.1-arm64v8` (work in progress, built for hardware running Jetpack 5.1)
69
+
*`-amd64` for x86 based systems
70
+
71
+
This variable may already be pre-set in more recent releases of ShOS / on Sighthound devices.
result=wx.MessageBox(f"Timeout reached communicating to {self.settings['api_ip']}. Do you want to modify settings?", "Update settings?", wx.YES_NO|wx.ICON_QUESTION)
Copy file name to clipboardExpand all lines: deployment-examples/SIOOnDemandAnalytics/README.md
+11-1Lines changed: 11 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,4 +15,14 @@ REST API Flask module is bringing it all together, providing a front-end impleme
15
15
## Client
16
16
17
17
A sample client is implemented in `SIOOnDemandAnalytics/clients/OnDemandTest.py`.
18
-
The client can be ran using `python3 ./clients/OnDemandTest.py [-i inputImage] [-o outputFolder]`
18
+
The client can be ran using `python3 ./clients/OnDemandTest.py [-i inputImage] [-o outputFolder]`
19
+
20
+
## OS Compatibility
21
+
22
+
`SIO_DOCKER_TAG_VARIANT` environment variable used in `docker-compose` controls the flavor of SIO analytics container image. While on x86 systems thing largely work without setting it, on Jetson-based system, set it to the value most compatible with your base OS.
23
+
24
+
*`-r32.4.3-arm64v8` (built for hardware running Jetpack 4.4)
25
+
*`-r32.7.3-arm64v8` (built for hardware running Jetpack 4.6)
26
+
*`-r35.3.1-arm64v8` (work in progress, built for hardware running Jetpack 5.1)
Copy file name to clipboardExpand all lines: deployment-examples/SighthoundRestApiGateway/README.md
+11Lines changed: 11 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -34,3 +34,14 @@ We recommend using the UI Demo for development purposes only, and it should be r
34
34
## Request and Response
35
35
36
36
See the [online documentation](https://dev.sighthound.com/cloud-api/docs/quickstart/docker/#request-format) for details on the request/response formats and code samples.
37
+
38
+
## OS Compatibility
39
+
40
+
`SIO_DOCKER_TAG_VARIANT` environment variable used in `docker-compose` controls the flavor of SIO analytics container image. While on x86 systems thing largely work without setting it, on Jetson-based system, set it to the value most compatible with your base OS.
41
+
42
+
*`-r32.4.3-arm64v8` (built for hardware running Jetpack 4.4)
43
+
*`-r32.7.3-arm64v8` (built for hardware running Jetpack 4.6)
44
+
*`-r35.3.1-arm64v8` (work in progress, built for hardware running Jetpack 5.1)
45
+
*`-amd64` for x86 based systems
46
+
47
+
This variable may already be pre-set in more recent releases of ShOS / on Sighthound devices.
Copy file name to clipboardExpand all lines: deployment-examples/StandaloneSIOWithExtension/README.md
+10Lines changed: 10 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -43,3 +43,13 @@ camera deployed in such non-deterministic way - thus assuming that monitoring th
43
43
ensures we're not going to analyze objects outside of the bottom right quadrant ROI (`lp_roiFilter` accomplishes that), and won't analyze objects below size threshold (`vehicle_SizeFilter`
44
44
and `lp_SizeFilter` filters accomplish that).
45
45
46
+
47
+
## OS Compatibility
48
+
49
+
`SIO_DOCKER_TAG_VARIANT` environment variable used in `docker-compose` controls the flavor of SIO analytics container image. While on x86 systems thing largely work without setting it, on Jetson-based system, set it to the value most compatible with your base OS.
50
+
51
+
*`-r32.4.3-arm64v8` (built for hardware running Jetpack 4.4)
52
+
*`-r32.7.3-arm64v8` (built for hardware running Jetpack 4.6)
53
+
*`-r35.3.1-arm64v8` (work in progress, built for hardware running Jetpack 5.1)
Copy file name to clipboardExpand all lines: deployment-examples/VideoStreamsConsumer/README.md
+12-1Lines changed: 12 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -40,4 +40,15 @@ Once the services are up and running, start the client sample with a `docker com
40
40
41
41
The following client samples are available for this deployment:
42
42
43
-
*`SIOOutput` - simple AMQP client listening for and consuming SIO output from the message queue
43
+
*`SIOOutput` - simple AMQP client listening for and consuming SIO output from the message queue
44
+
45
+
## OS Compatibility
46
+
47
+
`SIO_DOCKER_TAG_VARIANT` environment variable used in `docker-compose` controls the flavor of SIO analytics container image. While on x86 systems thing largely work without setting it, on Jetson-based system, set it to the value most compatible with your base OS.
48
+
49
+
*`-r32.4.3-arm64v8` (built for hardware running Jetpack 4.4)
50
+
*`-r32.7.3-arm64v8` (built for hardware running Jetpack 4.6)
51
+
*`-r35.3.1-arm64v8` (work in progress, built for hardware running Jetpack 5.1)
52
+
*`-amd64` for x86 based systems
53
+
54
+
This variable may already be pre-set in more recent releases of ShOS / on Sighthound devices.
Once the services are up and running, start the client sample with a `docker compose up` command while inside the relevant sample's folder in `./clients/python/`
41
41
42
+
43
+
## OS Compatibility
44
+
45
+
`SIO_DOCKER_TAG_VARIANT` environment variable used in `docker-compose` controls the flavor of SIO analytics container image. While on x86 systems thing largely work without setting it, on Jetson-based system, set it to the value most compatible with your base OS.
46
+
47
+
*`-r32.4.3-arm64v8` (built for hardware running Jetpack 4.4)
48
+
*`-r32.7.3-arm64v8` (built for hardware running Jetpack 4.6)
49
+
*`-r35.3.1-arm64v8` (work in progress, built for hardware running Jetpack 5.1)
50
+
*`-amd64` for x86 based systems
51
+
52
+
This variable may already be pre-set in more recent releases of ShOS / on Sighthound devices.
0 commit comments