Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
py-3d-face-reconstruction
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Richard Torenvliet
py-3d-face-reconstruction
Commits
bafb7dbd
Commit
bafb7dbd
authored
8 years ago
by
Richard Torenvliet
Browse files
Options
Downloads
Patches
Plain Diff
Add a way to store the pca model and add the pca model itself
parent
75db1611
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
data/pca_model.npy
+0
-0
0 additions, 0 deletions
data/pca_model.npy
src/main.py
+43
-6
43 additions, 6 deletions
src/main.py
with
43 additions
and
6 deletions
data/pca_model.npy
0 → 100644
+
0
−
0
View file @
bafb7dbd
File added
This diff is collapsed.
Click to expand it.
src/main.py
+
43
−
6
View file @
bafb7dbd
...
...
@@ -10,7 +10,6 @@ from imm_points import IMMPoints, build_feature_vectors, \
flatten_feature_vectors
def
nothing
(
_
):
pass
...
...
@@ -20,6 +19,11 @@ def add_parser_options():
pca_group
=
parser
.
add_argument_group
(
'
show_pca
'
)
pca_group
.
add_argument
(
'
--store_pca
'
,
action
=
'
store_true
'
,
help
=
'
number of principle components to keep and are able to manipulate
'
)
pca_group
.
add_argument
(
'
--show_pca
'
,
action
=
'
store_true
'
,
help
=
'
number of principle components to keep and are able to manipulate
'
...
...
@@ -35,6 +39,11 @@ def add_parser_options():
help
=
'
number of principle components to keep and are able to manipulate
'
)
pca_group
.
add_argument
(
'
--file
'
,
type
=
str
,
help
=
'
pca model file that contains or is going to contain the pca model
'
)
return
parser
...
...
@@ -45,14 +54,35 @@ def init_eigenvalue_trackbars(n_components, s):
cv2
.
createTrackbar
(
'
{}
'
.
format
(
i
),
'
eigenvalues
'
,
500
,
1000
,
nothing
)
def
show_pca
():
assert
args
.
asf
,
'
--asf files should be supplied
'
def
store_model
(
args
):
"""
Store the U, s, Vt and mean of all the asf datafiles given by the asf
files.
"""
assert
args
.
asf
,
'
--asf files should be given
'
assert
args
.
file
,
'
--file needs to be provided to store the pca model
'
imm_points
=
build_feature_vectors
(
args
.
asf
,
flattened
=
True
)
mean_values
=
get_mean
(
imm_points
)
U
,
s
,
Vt
=
pca
(
imm_points
,
mean_values
)
np
.
save
(
args
.
file
,
np
.
asarray
([
U
,
s
,
Vt
,
mean_values
]))
def
show_pca
(
args
):
assert
args
.
asf
,
'
--asf files should be given to allow the image to be shown
'
assert
args
.
file
,
'
--file needs to be provided to get the pca model
'
# load the stored model file
UsVtm
=
np
.
load
(
args
.
file
)
U
=
UsVtm
[
0
]
s
=
UsVtm
[
1
]
Vt
=
UsVtm
[
2
]
mean_values
=
UsVtm
[
3
]
# init trackbars
index
=
0
cv2
.
namedWindow
(
'
index
'
)
...
...
@@ -73,7 +103,8 @@ def show_pca():
imm
.
show_on_img
(
img
)
for
i
in
range
(
n_components
):
s_copy
[
i
]
=
s
[
i
]
*
((
cv2
.
getTrackbarPos
(
str
(
i
),
'
eigenvalues
'
)
-
500
)
/
10.0
)
s_copy
[
i
]
=
s
[
i
]
*
(
(
cv2
.
getTrackbarPos
(
str
(
i
),
'
eigenvalues
'
)
-
500
)
/
10.0
)
index
=
cv2
.
getTrackbarPos
(
'
index
'
,
'
index
'
)
imm
=
IMMPoints
(
filename
=
args
.
asf
[
index
])
...
...
@@ -86,9 +117,15 @@ def show_pca():
cv2
.
destroyAllWindows
()
if
__name__
==
'
__
main
__
'
:
def
main
()
:
parser
=
add_parser_options
()
args
=
parser
.
parse_args
()
if
args
.
show_pca
:
show_pca
()
show_pca
(
args
)
elif
args
.
store_pca
:
store_model
(
args
)
if
__name__
==
'
__main__
'
:
main
()
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment