Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
eos
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
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Richard Torenvliet
eos
Commits
2375d214
Commit
2375d214
authored
Oct 10, 2016
by
Patrik Huber
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Replaced unnecessary template from last commit with simple function overloading
parent
6b112dc6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
6 deletions
+3
-6
include/eos/morphablemodel/PcaModel.hpp
include/eos/morphablemodel/PcaModel.hpp
+3
-6
No files found.
include/eos/morphablemodel/PcaModel.hpp
View file @
2375d214
...
@@ -158,14 +158,9 @@ public:
...
@@ -158,14 +158,9 @@ public:
* The given coefficients should follow a standard normal distribution, i.e.
* The given coefficients should follow a standard normal distribution, i.e.
* not be "normalised" with their eigenvalues/variances.
* not be "normalised" with their eigenvalues/variances.
*
*
* @tparam T Precision of the given coefficients - can be double or float.
* @param[in] coefficients The PCA coefficients used to generate the sample.
* @param[in] coefficients The PCA coefficients used to generate the sample.
* @return A model instance with given coefficients.
* @return A model instance with given coefficients.
*/
*/
template
<
typename
T
>
cv
::
Mat
draw_sample
(
std
::
vector
<
T
>
coefficients
)
const
;
template
<
>
cv
::
Mat
draw_sample
(
std
::
vector
<
float
>
coefficients
)
const
cv
::
Mat
draw_sample
(
std
::
vector
<
float
>
coefficients
)
const
{
{
// Fill the rest with zeros if not all coefficients are given:
// Fill the rest with zeros if not all coefficients are given:
...
@@ -179,7 +174,9 @@ public:
...
@@ -179,7 +174,9 @@ public:
return
model_sample
;
return
model_sample
;
};
};
template
<
>
/**
* @copydoc PcaModel::draw_sample(std::vector<double>)
*/
cv
::
Mat
draw_sample
(
std
::
vector
<
double
>
coefficients
)
const
cv
::
Mat
draw_sample
(
std
::
vector
<
double
>
coefficients
)
const
{
{
// We have to convert the vector of doubles to float:
// We have to convert the vector of doubles to float:
...
...
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