Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
2
2020-101
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
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Sachith Fernando
2020-101
Commits
2e2c21fd
Commit
2e2c21fd
authored
Jan 03, 2021
by
sachith.fernando
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
removed saving experiment
parent
098788f4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
7 deletions
+1
-7
AttendanceApp/camera.py
AttendanceApp/camera.py
+1
-7
No files found.
AttendanceApp/camera.py
View file @
2e2c21fd
...
@@ -23,15 +23,12 @@ maskNet = load_model(os.path.join(settings.BASE_DIR,'face_detector/mask_detector
...
@@ -23,15 +23,12 @@ maskNet = load_model(os.path.join(settings.BASE_DIR,'face_detector/mask_detector
class
IPWebCam
(
object
):
class
IPWebCam
(
object
):
def
__init__
(
self
):
def
__init__
(
self
):
self
.
url
=
"http://192.168.8.100:8080/shot.jpg"
self
.
url
=
"http://192.168.8.103:8080/shot.jpg"
self
.
_count
=
0
def
__del__
(
self
):
def
__del__
(
self
):
cv2
.
destroyAllWindows
()
cv2
.
destroyAllWindows
()
def
get_frame
(
self
):
def
get_frame
(
self
):
fourcc
=
cv2
.
VideoWriter_fourcc
(
*
'XVID'
)
out
=
cv2
.
VideoWriter
(
'output.avi'
,
fourcc
,
20.0
,
(
640
,
480
))
imgResp
=
urllib
.
request
.
urlopen
(
self
.
url
)
imgResp
=
urllib
.
request
.
urlopen
(
self
.
url
)
imgNp
=
np
.
array
(
bytearray
(
imgResp
.
read
()),
dtype
=
np
.
uint8
)
imgNp
=
np
.
array
(
bytearray
(
imgResp
.
read
()),
dtype
=
np
.
uint8
)
img
=
cv2
.
imdecode
(
imgNp
,
-
1
)
img
=
cv2
.
imdecode
(
imgNp
,
-
1
)
...
@@ -46,9 +43,6 @@ class IPWebCam(object):
...
@@ -46,9 +43,6 @@ class IPWebCam(object):
frame_flip
=
cv2
.
flip
(
resize
,
1
)
frame_flip
=
cv2
.
flip
(
resize
,
1
)
ret
,
jpeg
=
cv2
.
imencode
(
'.jpg'
,
frame_flip
)
ret
,
jpeg
=
cv2
.
imencode
(
'.jpg'
,
frame_flip
)
# capture frame and save on a given time in order to run the face recognition
sleep
(
3
);
cv2
.
imwrite
(
"
%
d.jpg"
%
self
.
_count
,
img
)
self
.
_count
=+
1
return
jpeg
.
tobytes
()
return
jpeg
.
tobytes
()
...
...
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