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
{{ message }}
This repository was archived by the owner on Oct 23, 2024. It is now read-only.
Copy file name to clipboardExpand all lines: doc/servermd/AnalyticsGuide.md
+34-5Lines changed: 34 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -52,7 +52,6 @@ cd owt-server/docker
52
52
Then owt:openvino image will be created with all the video analytics needed software installed. Then you can launch the container and copy OWT package into the container:
53
53
````
54
54
docker run -itd --net=host --name=gst-analytics owt:openvino bash
55
-
docker cp Release-vxxx.tgz gst-analytics:/home/
56
55
docker exec -it gst-analytics bash
57
56
````
58
57
@@ -91,8 +90,7 @@ Follow Model Downloader guide (open_model_zoo-2020.4/tools/downloader/README.md
91
90
92
91
After all the dependencies are installed, you can follow commands below to build sample video analytics plugins in docker container or host machine:
93
92
````
94
-
tar zxf Release-vxxx.tgz
95
-
cd Release-vxxx/analytics_agent/plugins/samples
93
+
cd /home/owt/analytics_agent/plugins/samples
96
94
./build_samples.sh
97
95
cp build/intel64/Release/lib/lib* ../../lib/
98
96
````
@@ -134,8 +132,8 @@ Make sure you copy pipeline binaries to ````dist/analytics_agent/lib/````directo
134
132
Start up MCU in Docker container:
135
133
136
134
````
137
-
cd Release-vxxx
138
-
./bin/init-all.sh --deps ##default password for user owt is owt
135
+
cd /home/owt
136
+
./bin/init-all.sh ##default password for user owt is owt
OWT sample web page will download jquery-3.2.1.min.js and socket.io.js files from internet, for network that cannot successfully download these 2 files following errors will print on Chrome console:
156
+
```
157
+
index.js:52 Uncaught (in promise) ReferenceError: $ is not defined
158
+
at createResolutionButtons (index.js:52)
159
+
at subscribeAndRenderVideo (index.js:100)
160
+
at index.js:194
161
+
createResolutionButtons @ index.js:52
162
+
subscribeAndRenderVideo @ index.js:100
163
+
(anonymous) @ index.js:194
164
+
Promise.then (async)
165
+
(anonymous) @ index.js:143
166
+
req.onreadystatechange @ rest-sample.js:12
167
+
XMLHttpRequest.send (async)
168
+
send @ rest-sample.js:19
169
+
createToken @ rest-sample.js:79
170
+
window.onload @ index.js:141
171
+
load (async)
172
+
runSocketIOSample @ index.js:134
173
+
(anonymous) @ (index):53
174
+
index.js:176 Uncaught (in promise) ReferenceError: $ is not defined
175
+
at index.js:176
176
+
```
177
+
If this error happens, please manually download js files and replace them in docker image as:
0 commit comments