Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
eos
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
eos
Commits
9e62edc2
Commit
9e62edc2
authored
9 years ago
by
Patrik Huber
Browse files
Options
Downloads
Patches
Plain Diff
Minor documentation improvement - snake_case & consistency
parent
876bdc67
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
include/eos/morphablemodel/PcaModel.hpp
+7
-7
7 additions, 7 deletions
include/eos/morphablemodel/PcaModel.hpp
with
7 additions
and
7 deletions
include/eos/morphablemodel/PcaModel.hpp
+
7
−
7
View file @
9e62edc2
...
...
@@ -38,8 +38,8 @@ namespace eos {
namespace
morphablemodel
{
// Forward declarations of free functions
cv
::
Mat
normalise_pca_basis
(
cv
::
Mat
unnormalised
B
asis
,
cv
::
Mat
eigenvalues
);
cv
::
Mat
unnormalise_pca_basis
(
cv
::
Mat
normalised
B
asis
,
cv
::
Mat
eigenvalues
);
cv
::
Mat
normalise_pca_basis
(
cv
::
Mat
unnormalised
_b
asis
,
cv
::
Mat
eigenvalues
);
cv
::
Mat
unnormalise_pca_basis
(
cv
::
Mat
normalised
_b
asis
,
cv
::
Mat
eigenvalues
);
/**
* @brief This class represents a PCA-model that consists of:
...
...
@@ -82,7 +82,7 @@ public:
*/
int
get_num_principal_components
()
const
{
// Note: we could assert(normalised
PcaB
asis.cols==unnormalised
PcaB
asis.cols)
// Note: we could assert(normalised
_pca_b
asis.cols==unnormalised
_pca_b
asis.cols)
return
normalised_pca_basis
.
cols
;
};
...
...
@@ -96,7 +96,7 @@ public:
*/
int
get_data_dimension
()
const
{
// Note: we could assert(normalised
PcaB
asis.rows==unnormalised
PcaB
asis.rows)
// Note: we could assert(normalised
_pca_b
asis.rows==unnormalised
_pca_b
asis.rows)
return
normalised_pca_basis
.
rows
;
};
...
...
@@ -121,10 +121,10 @@ public:
};
/**
* Return the value of the mean at a given vertex i
d
.
* Return the value of the mean at a given vertex i
ndex
.
*
* @param[in] vertex_index A vertex i
d
.
* @return A homogeneous vector containing the values at the given vertex i
d
.
* @param[in] vertex_index A vertex i
ndex
.
* @return A homogeneous vector containing the values at the given vertex i
ndex
.
*/
cv
::
Vec4f
get_mean_at_point
(
int
vertex_index
)
const
{
...
...
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