Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
2
2021_123
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
2021_123
2021_123
Commits
7884d05e
Commit
7884d05e
authored
Oct 17, 2021
by
Fernando P.I.S.P
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
main
parent
08b81fbe
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
127 additions
and
0 deletions
+127
-0
main.py
main.py
+127
-0
No files found.
main.py
0 → 100644
View file @
7884d05e
import
cv2
as
cv
import
numpy
as
np
import
module
as
m
import
time
# Variables
COUNTER
=
0
TOTAL_BLINKS
=
0
CLOSED_EYES_FRAME
=
3
TOTAL_COUNTS
=
0
cameraID
=
0
videoPath
=
"Video/Your Eyes Independently_Trim5.mp4"
# variables for frame rate.
FRAME_COUNTER
=
0
START_TIME
=
time
.
time
()
FPS
=
0
pos
=
0
leftPos
=
0
# creating camera object
camera
=
cv
.
VideoCapture
(
0
)
# camera.set(3, 640)
# camera.set(4, 480)
# Define the codec and create VideoWriter object
fourcc
=
cv
.
VideoWriter_fourcc
(
*
'XVID'
)
f
=
camera
.
get
(
cv
.
CAP_PROP_FPS
)
width
=
camera
.
get
(
cv
.
CAP_PROP_FRAME_WIDTH
)
height
=
camera
.
get
(
cv
.
CAP_PROP_FRAME_HEIGHT
)
print
(
width
,
height
,
f
)
fileName
=
videoPath
.
split
(
'/'
)[
1
]
name
=
fileName
.
split
(
'.'
)[
0
]
print
(
name
)
# Recoder = cv.VideoWriter(f'{name}.mp4', fourcc, 15, (int(width), int(height)))
while
True
:
FRAME_COUNTER
+=
1
# getting frame from camera
ret
,
frame
=
camera
.
read
()
if
ret
==
False
:
break
# converting frame into Gry image.
grayFrame
=
cv
.
cvtColor
(
frame
,
cv
.
COLOR_BGR2GRAY
)
height
,
width
=
grayFrame
.
shape
circleCenter
=
(
int
(
width
/
2
),
50
)
# calling the face detector funciton
image
,
face
=
m
.
faceDetector
(
frame
,
grayFrame
)
if
face
is
not
None
:
# calling landmarks detector funciton.
image
,
PointList
=
m
.
faceLandmakDetector
(
frame
,
grayFrame
,
face
,
False
)
# print(PointList)
cv
.
putText
(
frame
,
f
''
,
(
460
,
20
),
m
.
fonts
,
0.7
,
m
.
YELLOW
,
2
)
RightEyePoint
=
PointList
[
36
:
42
]
LeftEyePoint
=
PointList
[
42
:
48
]
leftRatio
,
topMid
,
bottomMid
=
m
.
blinkDetector
(
LeftEyePoint
)
rightRatio
,
rTop
,
rBottom
=
m
.
blinkDetector
(
RightEyePoint
)
# cv.circle(image, topMid, 2, m.YELLOW, -1)
# cv.circle(image, bottomMid, 2, m.YELLOW, -1)
blinkRatio
=
(
leftRatio
+
rightRatio
)
/
2
if
pos
==
leftPos
:
COUNTER
+=
1
cv
.
putText
(
image
,
f
''
,
(
70
,
50
),
m
.
fonts
,
0.8
,
m
.
LIGHT_BLUE
,
2
)
# print("blink")
else
:
TOTAL_BLINKS
+=
1
COUNTER
=
0
TOTAL_COUNTS
+=
1
cv
.
putText
(
image
,
f
'Total Time in screen: {SECONDS}'
,
(
175
,
17
),
m
.
fonts
,
0.5
,
m
.
ORANGE
,
2
)
cv
.
putText
(
image
,
f
'Total Time out of screen: {TOTAL_BLINKS}'
,
(
175
,
37
),
m
.
fonts
,
0.5
,
m
.
ORANGE
,
2
)
cv
.
putText
(
image
,
f
'Total count of out of screen: {18}'
,
(
170
,
67
),
m
.
fonts
,
0.5
,
m
.
ORANGE
,
2
)
# for p in LeftEyePoint:
# cv.circle(image, p, 3, m.MAGENTA, 1)
mask
,
pos
,
color
=
m
.
EyeTracking
(
frame
,
grayFrame
,
RightEyePoint
)
maskleft
,
leftPos
,
leftColor
=
m
.
EyeTracking
(
frame
,
grayFrame
,
LeftEyePoint
)
# draw background as line where we put text.
cv
.
line
(
image
,
(
30
,
90
),
(
100
,
90
),
color
[
0
],
30
)
cv
.
line
(
image
,
(
25
,
50
),
(
135
,
50
),
m
.
WHITE
,
30
)
cv
.
line
(
image
,
(
int
(
width
-
150
),
50
),
(
int
(
width
-
45
),
50
),
m
.
WHITE
,
30
)
cv
.
line
(
image
,
(
int
(
width
-
140
),
90
),(
int
(
width
-
60
),
90
),
leftColor
[
0
],
30
)
# writing text on above line
cv
.
putText
(
image
,
f
'{pos}'
,
(
35
,
95
),
m
.
fonts
,
0.6
,
color
[
1
],
2
)
cv
.
putText
(
image
,
f
'{leftPos}'
,
(
int
(
width
-
140
),
95
),
m
.
fonts
,
0.6
,
leftColor
[
1
],
2
)
cv
.
putText
(
image
,
f
'Right Eye'
,
(
35
,
55
),
m
.
fonts
,
0.6
,
color
[
1
],
2
)
cv
.
putText
(
image
,
f
'Left Eye'
,
(
int
(
width
-
145
),
55
),
m
.
fonts
,
0.6
,
leftColor
[
1
],
2
)
# showing the frame on the screen
cv
.
imshow
(
'Frame'
,
image
)
else
:
cv
.
imshow
(
'Frame'
,
frame
)
# Recoder.write(frame)
# calculating the seconds
SECONDS
=
time
.
time
()
-
START_TIME
# calculating the frame rate
FPS
=
FRAME_COUNTER
/
SECONDS
# print(FPS)
# defining the key to Quite the Loop
key
=
cv
.
waitKey
(
1
)
# if q is pressed on keyboard: quit
if
key
==
ord
(
'q'
):
break
# closing the camera
camera
.
release
()
# Recoder.release()
# closing all the windows
cv
.
destroyAllWindows
()
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