Toggle navigation
Toggle navigation
This project
Loading...
Sign in
이수빈
/
Find_your_own_personal_color
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
starbucksdolcelatte
2019-04-14 13:30:24 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
2fda59fdea7093492db82bac9ec7628b202fe889
2fda59fd
1 parent
db5257dd
edit
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
3 deletions
main.py
main.py
View file @
2fda59f
...
...
@@ -3,22 +3,26 @@ from detect_face import DetectFace
from
dominant_colors
import
DominantColors
# Set paths
image
=
"res/
irene
.jpg"
image
=
"res/
lees
.jpg"
predictor
=
"shape_predictor_68_face_landmarks.dat"
# Create an DetectFace instance
df
=
DetectFace
(
predictor
,
image
)
'''
# Try: Extract mouth part
mouth
=
df
.
extract_face_part
(
df
.
mouth
)
cv2
.
imshow
(
"Mouth"
,
mouth
)
cv2
.
waitKey
(
0
)
'''
# Try: Extract right eye part
r_eye
=
df
.
extract_face_part
(
df
.
right_eye
)
cv2
.
imshow
(
"Right eye"
,
r_eye
)
cv2
.
waitKey
(
0
)
# Try: Extract left eye part
l_eye
=
df
.
extract_face_part
(
df
.
left_eye
)
cv2
.
imshow
(
"Left eye"
,
l_eye
)
cv2
.
waitKey
(
0
)
# Try : Extract cheek part
cv2
.
imshow
(
"Left cheek"
,
df
.
cheek_img
[
0
])
...
...
Please
register
or
login
to post a comment