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
5756d7c5
Commit
5756d7c5
authored
Aug 02, 2015
by
Patrik Huber
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Minor documentation improvements
parent
3e666ed2
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
include/eos/morphablemodel/MorphableModel.hpp
include/eos/morphablemodel/MorphableModel.hpp
+4
-4
include/eos/render/Mesh.hpp
include/eos/render/Mesh.hpp
+1
-1
No files found.
include/eos/morphablemodel/MorphableModel.hpp
View file @
5756d7c5
...
@@ -43,11 +43,11 @@ namespace eos {
...
@@ -43,11 +43,11 @@ namespace eos {
namespace
morphablemodel
{
namespace
morphablemodel
{
/**
/**
*
A class representing a 3D Morphable Model.
*
@brief A class representing a 3D Morphable Model, consisting
*
It consists of a shape- and albedo (texture
) PCA model.
*
of a shape- and colour (albedo
) PCA model.
*
*
* For the general idea of 3DMMs see T. Vetter, V. Blanz,
* For the general idea of 3DMMs see T. Vetter, V. Blanz,
* 'A Morphable Model for the Synthesis of 3D Faces', SIGGRAPH 1999
* 'A Morphable Model for the Synthesis of 3D Faces', SIGGRAPH 1999
.
*/
*/
class
MorphableModel
class
MorphableModel
{
{
...
@@ -59,7 +59,7 @@ public:
...
@@ -59,7 +59,7 @@ public:
* texture coordinates.
* texture coordinates.
*
*
* @param[in] shape_model A PCA model over the shape.
* @param[in] shape_model A PCA model over the shape.
* @param[in] color_model A PCA model over the color (albedo).
* @param[in] color_model A PCA model over the colo
u
r (albedo).
* @param[in] texture_coordinates Optional texture coordinates for every vertex.
* @param[in] texture_coordinates Optional texture coordinates for every vertex.
*/
*/
MorphableModel
(
PcaModel
shape_model
,
PcaModel
color_model
,
std
::
vector
<
cv
::
Vec2f
>
texture_coordinates
=
std
::
vector
<
cv
::
Vec2f
>
())
:
shape_model
(
shape_model
),
color_model
(
color_model
),
texture_coordinates
(
texture_coordinates
)
MorphableModel
(
PcaModel
shape_model
,
PcaModel
color_model
,
std
::
vector
<
cv
::
Vec2f
>
texture_coordinates
=
std
::
vector
<
cv
::
Vec2f
>
())
:
shape_model
(
shape_model
),
color_model
(
color_model
),
texture_coordinates
(
texture_coordinates
)
...
...
include/eos/render/Mesh.hpp
View file @
5756d7c5
...
@@ -95,7 +95,7 @@ inline void write_obj(Mesh mesh, std::string filename)
...
@@ -95,7 +95,7 @@ inline void write_obj(Mesh mesh, std::string filename)
*
*
* The obj will contain texture coordinates for the mesh, and the
* The obj will contain texture coordinates for the mesh, and the
* mtl file will link to a file named <filename>.isomap.png.
* mtl file will link to a file named <filename>.isomap.png.
* Note that the texture (isomap) has to be s
tor
ed separately.
* Note that the texture (isomap) has to be s
av
ed separately.
*
*
* @param[in] mesh The mesh to save as obj.
* @param[in] mesh The mesh to save as obj.
* @param[in] filename Output filename.
* @param[in] filename Output filename.
...
...
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