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
5756d7c5
Commit
5756d7c5
authored
9 years ago
by
Patrik Huber
Browse files
Options
Downloads
Patches
Plain Diff
Minor documentation improvements
parent
3e666ed2
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
include/eos/morphablemodel/MorphableModel.hpp
+4
-4
4 additions, 4 deletions
include/eos/morphablemodel/MorphableModel.hpp
include/eos/render/Mesh.hpp
+1
-1
1 addition, 1 deletion
include/eos/render/Mesh.hpp
with
5 additions
and
5 deletions
include/eos/morphablemodel/MorphableModel.hpp
+
4
−
4
View file @
5756d7c5
...
...
@@ -43,11 +43,11 @@ namespace eos {
namespace
morphablemodel
{
/**
* A class representing a 3D Morphable Model
.
*
It consists
of a shape- and
albedo (texture
) PCA model.
*
@brief
A class representing a 3D Morphable Model
, consisting
* of a shape- and
colour (albedo
) PCA model.
*
* 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
{
...
...
@@ -59,7 +59,7 @@ public:
* texture coordinates.
*
* @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.
*/
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
)
...
...
This diff is collapsed.
Click to expand it.
include/eos/render/Mesh.hpp
+
1
−
1
View file @
5756d7c5
...
...
@@ -95,7 +95,7 @@ inline void write_obj(Mesh mesh, std::string filename)
*
* The obj will contain texture coordinates for the mesh, and the
* 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] filename Output filename.
...
...
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