Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
Secure smart parking solution
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-122
Secure smart parking solution
Commits
27e939a1
Commit
27e939a1
authored
Jul 04, 2021
by
Dilitha A.G.A.D.
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add person detection
parent
3a1039b4
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
69 additions
and
0 deletions
+69
-0
personDetection/person_detection_video.py
personDetection/person_detection_video.py
+69
-0
No files found.
personDetection/person_detection_video.py
0 → 100644
View file @
27e939a1
import
cv2
import
datetime
import
imutils
import
numpy
as
np
protopath
=
"MobileNetSSD_deploy.prototxt"
modelpath
=
"MobileNetSSD_deploy.caffemodel"
detector
=
cv2
.
dnn
.
readNetFromCaffe
(
prototxt
=
protopath
,
caffeModel
=
modelpath
)
#
CLASSES
=
[
"background"
,
"aeroplane"
,
"bicycle"
,
"bird"
,
"boat"
,
"bottle"
,
"bus"
,
"car"
,
"cat"
,
"chair"
,
"cow"
,
"diningtable"
,
"dog"
,
"horse"
,
"motorbike"
,
"person"
,
"pottedplant"
,
"sheep"
,
"sofa"
,
"train"
,
"tvmonitor"
]
def
main
():
cap
=
cv2
.
VideoCapture
(
'test_video.mp4'
)
fps_start_time
=
datetime
.
datetime
.
now
()
fps
=
0
total_frames
=
0
while
True
:
ret
,
frame
=
cap
.
read
()
frame
=
imutils
.
resize
(
frame
,
width
=
600
)
total_frames
=
total_frames
+
1
(
H
,
W
)
=
frame
.
shape
[:
2
]
blob
=
cv2
.
dnn
.
blobFromImage
(
frame
,
0.007843
,
(
W
,
H
),
127.5
)
detector
.
setInput
(
blob
)
person_detections
=
detector
.
forward
()
for
i
in
np
.
arange
(
0
,
person_detections
.
shape
[
2
]):
confidence
=
person_detections
[
0
,
0
,
i
,
2
]
if
confidence
>
0.5
:
idx
=
int
(
person_detections
[
0
,
0
,
i
,
1
])
if
CLASSES
[
idx
]
!=
"person"
:
continue
person_box
=
person_detections
[
0
,
0
,
i
,
3
:
7
]
*
np
.
array
([
W
,
H
,
W
,
H
])
(
startX
,
startY
,
endX
,
endY
)
=
person_box
.
astype
(
"int"
)
cv2
.
rectangle
(
frame
,
(
startX
,
startY
),
(
endX
,
endY
),
(
0
,
0
,
255
),
2
)
fps_end_time
=
datetime
.
datetime
.
now
()
time_diff
=
fps_end_time
-
fps_start_time
if
time_diff
.
seconds
==
0
:
fps
=
0.0
else
:
fps
=
(
total_frames
/
time_diff
.
seconds
)
fps_text
=
"FPS: {:.2f}"
.
format
(
fps
)
cv2
.
putText
(
frame
,
fps_text
,
(
5
,
30
),
cv2
.
FONT_HERSHEY_COMPLEX_SMALL
,
1
,
(
0
,
0
,
255
),
1
)
cv2
.
imshow
(
"Application"
,
frame
)
key
=
cv2
.
waitKey
(
1
)
if
key
==
ord
(
'q'
):
break
cv2
.
destroyAllWindows
()
main
()
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