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
46705a36
Commit
46705a36
authored
Jul 09, 2015
by
Patrik Huber
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Documentation fixes
parent
f7f5fd5d
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
9 additions
and
10 deletions
+9
-10
doc/Doxyfile.in
doc/Doxyfile.in
+1
-2
include/eos/core/LandmarkMapper.hpp
include/eos/core/LandmarkMapper.hpp
+1
-1
include/eos/morphablemodel/MorphableModel.hpp
include/eos/morphablemodel/MorphableModel.hpp
+3
-3
include/eos/morphablemodel/PcaModel.hpp
include/eos/morphablemodel/PcaModel.hpp
+3
-3
include/eos/morphablemodel/io/mat_cerealisation.hpp
include/eos/morphablemodel/io/mat_cerealisation.hpp
+1
-1
No files found.
doc/Doxyfile.in
View file @
46705a36
...
...
@@ -2,8 +2,7 @@ PROJECT_NAME = "@CMAKE_PROJECT_NAME@"
PROJECT_NUMBER = @eos_VERSION_MAJOR@.@eos_VERSION_MINOR@.@eos_VERSION_PATCH@
STRIP_FROM_PATH = @PROJECT_SOURCE_DIR@
INPUT = @PROJECT_SOURCE_DIR@/README.md \
@PROJECT_SOURCE_DIR@/include \
@PROJECT_SOURCE_DIR@/src
@PROJECT_SOURCE_DIR@/include
RECURSIVE = YES
USE_MDFILE_AS_MAINPAGE = README.md
...
...
include/eos/core/LandmarkMapper.hpp
View file @
46705a36
...
...
@@ -86,7 +86,7 @@ public:
/**
* Converts the given landmark name to the mapped name.
*
* @param[in] landmark
N
ame A landmark name to convert.
* @param[in] landmark
_n
ame A landmark name to convert.
* @return The mapped landmark name.
* @throws out_of_range exception if there is no mapping
* for the given landmarkName.
...
...
include/eos/morphablemodel/MorphableModel.hpp
View file @
46705a36
...
...
@@ -60,9 +60,9 @@ public:
* Create a Morphable Model from a shape and a color PCA model, and optional
* texture coordinates.
*
* @param[in] shape
M
odel A PCA model over the shape.
* @param[in] color
M
odel A PCA model over the color (albedo).
* @param[in] texture
C
oordinates Optional texture coordinates for every vertex.
* @param[in] shape
_m
odel A PCA model over the shape.
* @param[in] color
_m
odel A PCA model over the color (albedo).
* @param[in] texture
_c
oordinates 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
)
{
...
...
include/eos/morphablemodel/PcaModel.hpp
View file @
46705a36
...
...
@@ -125,7 +125,7 @@ public:
/**
* Return the value of the mean at a given vertex id.
*
* @param[in] vertex
I
ndex A vertex id.
* @param[in] vertex
_i
ndex A vertex id.
* @return A homogeneous vector containing the values at the given vertex id.
*/
cv
::
Vec4f
get_mean_at_point
(
int
vertex_index
)
const
...
...
@@ -199,7 +199,7 @@ public:
* The returned basis is normalised, i.e. every eigenvector
* is normalised by multiplying it with the square root of its eigenvalue.
*
* @param[in] vertex
I
d A vertex index. Make sure it is valid.
* @param[in] vertex
_i
d A vertex index. Make sure it is valid.
* @return A Mat that points to the rows in the original basis.
*/
cv
::
Mat
get_normalised_pca_basis
(
int
vertex_id
)
const
...
...
@@ -227,7 +227,7 @@ public:
* Returns the PCA basis for a particular vertex.
* The returned basis is unnormalised, i.e. not scaled by their eigenvalues.
*
* @param[in] vertex
I
d A vertex index. Make sure it is valid.
* @param[in] vertex
_i
d A vertex index. Make sure it is valid.
* @return A Mat that points to the rows in the original basis.
*/
cv
::
Mat
get_unnormalised_pca_basis
(
int
vertex_id
)
const
...
...
include/eos/morphablemodel/io/mat_cerealisation.hpp
View file @
46705a36
...
...
@@ -104,7 +104,7 @@ void load(Archive& ar, cv::Mat& mat)
* Serialisation for a cv::Vec2f using cereal.
*
* @param[in] ar The archive to (de)serialise.
* @param[in]
mat
The vector to (de)serialise.
* @param[in]
vec
The vector to (de)serialise.
*/
template
<
class
Archive
>
void
serialize
(
Archive
&
ar
,
cv
::
Vec2f
&
vec
)
...
...
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