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
f58f9f54
Commit
f58f9f54
authored
Nov 25, 2016
by
Patrik Huber
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed eos:: namespace prefix from some function arguments
parent
0f2bd583
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
include/eos/fitting/fitting.hpp
include/eos/fitting/fitting.hpp
+2
-2
No files found.
include/eos/fitting/fitting.hpp
View file @
f58f9f54
...
...
@@ -55,7 +55,7 @@ namespace eos {
* @param[out] blendshape_coefficients Output parameter that will contain the resulting blendshape coefficients.
* @return The fitted model shape instance.
*/
cv
::
Mat
fit_shape
(
cv
::
Mat
affine_camera_matrix
,
eos
::
morphablemodel
::
MorphableModel
morphable_model
,
std
::
vector
<
eos
::
morphablemodel
::
Blendshape
>
blendshapes
,
std
::
vector
<
cv
::
Vec2f
>
image_points
,
std
::
vector
<
int
>
vertex_indices
,
float
lambda
,
boost
::
optional
<
int
>
num_coefficients_to_fit
,
std
::
vector
<
float
>&
pca_shape_coefficients
,
std
::
vector
<
float
>&
blendshape_coefficients
)
cv
::
Mat
fit_shape
(
cv
::
Mat
affine_camera_matrix
,
morphablemodel
::
MorphableModel
morphable_model
,
std
::
vector
<
morphablemodel
::
Blendshape
>
blendshapes
,
std
::
vector
<
cv
::
Vec2f
>
image_points
,
std
::
vector
<
int
>
vertex_indices
,
float
lambda
,
boost
::
optional
<
int
>
num_coefficients_to_fit
,
std
::
vector
<
float
>&
pca_shape_coefficients
,
std
::
vector
<
float
>&
blendshape_coefficients
)
{
using
cv
::
Mat
;
...
...
@@ -105,7 +105,7 @@ cv::Mat fit_shape(cv::Mat affine_camera_matrix, eos::morphablemodel::MorphableMo
* @param[in] num_coefficients_to_fit How many shape-coefficients to fit (all others will stay 0). Should be bigger than zero, or boost::none to fit all coefficients.
* @return The fitted model shape instance.
*/
cv
::
Mat
fit_shape
(
cv
::
Mat
affine_camera_matrix
,
eos
::
morphablemodel
::
MorphableModel
morphable_model
,
std
::
vector
<
eos
::
morphablemodel
::
Blendshape
>
blendshapes
,
std
::
vector
<
cv
::
Vec2f
>
image_points
,
std
::
vector
<
int
>
vertex_indices
,
float
lambda
=
3.0
f
,
boost
::
optional
<
int
>
num_coefficients_to_fit
=
boost
::
optional
<
int
>
())
cv
::
Mat
fit_shape
(
cv
::
Mat
affine_camera_matrix
,
morphablemodel
::
MorphableModel
morphable_model
,
std
::
vector
<
morphablemodel
::
Blendshape
>
blendshapes
,
std
::
vector
<
cv
::
Vec2f
>
image_points
,
std
::
vector
<
int
>
vertex_indices
,
float
lambda
=
3.0
f
,
boost
::
optional
<
int
>
num_coefficients_to_fit
=
boost
::
optional
<
int
>
())
{
std
::
vector
<
float
>
unused
;
return
fit_shape
(
affine_camera_matrix
,
morphable_model
,
blendshapes
,
image_points
,
vertex_indices
,
lambda
,
num_coefficients_to_fit
,
unused
,
unused
);
...
...
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