Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jk_edge_code_api_integration
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
CI / CD Analytics
Repository Analytics
Value Stream Analytics
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
sikhin.vc
jk_edge_code_api_integration
Commits
5824a15c
Commit
5824a15c
authored
May 05, 2023
by
Sikhin VC
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added server API endpoints
parent
7aab7103
Pipeline
#69213
canceled with stage
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
3 deletions
+2
-3
edge_engine/common/config.py
edge_engine/common/config.py
+1
-1
scripts/cement_counter.py
scripts/cement_counter.py
+1
-2
No files found.
edge_engine/common/config.py
View file @
5824a15c
...
...
@@ -33,7 +33,7 @@ CONFIG_ENV = json.loads(os.environ.get('config', default=None))
logger
.
info
(
f
"CONFIG ENV IS {CONFIG_ENV}"
)
DEPLOYMENT_ID
=
CONFIG_ENV
.
get
(
'DEPLOYMENT_ID'
,
None
)
GET_JANUS_DETAILS
=
CONFIG_ENV
.
get
(
'GET_JANUS_DETAILS'
,
None
)
MONGO_URI_ADD_EVENTLOGS
=
CONFIG_ENV
.
get
(
'MONGO_URI
_ADD_EVENTLOGS
'
,
None
)
MONGO_URI_ADD_EVENTLOGS
=
CONFIG_ENV
.
get
(
'MONGO_URI'
,
None
)
url
=
GET_JANUS_DETAILS
+
DEPLOYMENT_ID
print
(
url
)
EDGE_CONFIG
=
requests
.
get
(
url
)
.
json
()[
"data"
]
...
...
scripts/cement_counter.py
View file @
5824a15c
...
...
@@ -328,12 +328,11 @@ class CementBagCounter(ModelWrapper):
elif
object_id
in
self
.
uncounted_objects
:
self
.
uncounted_objects
.
pop
(
object_id
,
None
)
self
.
count
+=
1
url
=
MONGO_URI_ADD_EVENTLOGS
img2
=
frame
.
copy
()
img2
=
cv2
.
resize
(
img2
,
(
64
,
64
))
bs64
=
str
(
base64
.
b64encode
(
img2
)
.
decode
(
'utf-8'
))
# Changed this line. converted byte to string
json
=
{
"eventId"
:
str
(
uuid1
())
.
split
(
'-'
)[
0
],
"cameraId"
:
EDGE_CONFIG
[
'deviceId'
],
"cameraName"
:
EDGE_CONFIG
[
'deviceId'
],
"timestamp"
:
datetime
.
isoformat
(
datetime
.
now
()),
"frame"
:
bs64
}
response
=
requests
.
post
(
url
=
url
,
json
=
json
)
response
=
requests
.
post
(
url
=
MONGO_URI_ADD_EVENTLOGS
,
json
=
json
)
logger
.
info
(
f
"response is : {response.text}"
)
logger
.
info
(
f
"Count: {self.count}"
)
frame
=
draw_circles_on_frame
(
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment