Skip to content

Commit b845776

Browse files
committed
Clarified documentation of draw_sample() when a partial vector is given
1 parent 90058b2 commit b845776

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

include/eos/morphablemodel/MorphableModel.hpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,7 @@ class MorphableModel
145145
* The coefficient vectors should contain normalised, i.e. standard normal distributed coefficients.
146146
* If the Morphable Model is a shape-only model (without colour model), make sure to
147147
* leave \c color_coefficients empty.
148+
* If a partial coefficient vector is given, it is filled with zeros up to the end.
148149
*
149150
* @param[in] shape_coefficients The PCA coefficients used to generate the shape sample.
150151
* @param[in] color_coefficients The PCA coefficients used to generate the vertex colouring.
@@ -203,7 +204,7 @@ class MorphableModel
203204

204205
private:
205206
PcaModel shape_model; ///< A PCA model of the shape
206-
PcaModel color_model; ///< A PCA model of vertex color information
207+
PcaModel color_model; ///< A PCA model of vertex colour information
207208
std::vector<cv::Vec2f> texture_coordinates; ///< uv-coordinates for every vertex
208209

209210
/**

0 commit comments

Comments
 (0)