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
112c2cf5
Commit
112c2cf5
authored
Aug 22, 2016
by
Patrik Huber
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Changed "Eos" to "eos" in all comments in headers/files
parent
37e6c36c
Changes
28
Show whitespace changes
Inline
Side-by-side
Showing
28 changed files
with
30 additions
and
30 deletions
+30
-30
examples/fit-model.cpp
examples/fit-model.cpp
+1
-1
examples/generate-obj.cpp
examples/generate-obj.cpp
+1
-1
include/eos/core/Landmark.hpp
include/eos/core/Landmark.hpp
+1
-1
include/eos/core/LandmarkMapper.hpp
include/eos/core/LandmarkMapper.hpp
+1
-1
include/eos/fitting/affine_camera_estimation.hpp
include/eos/fitting/affine_camera_estimation.hpp
+1
-1
include/eos/fitting/blendshape_fitting.hpp
include/eos/fitting/blendshape_fitting.hpp
+1
-1
include/eos/fitting/ceres_nonlinear.hpp
include/eos/fitting/ceres_nonlinear.hpp
+1
-1
include/eos/fitting/contour_correspondence.hpp
include/eos/fitting/contour_correspondence.hpp
+1
-1
include/eos/fitting/detail/nonlinear_camera_estimation_detail.hpp
...eos/fitting/detail/nonlinear_camera_estimation_detail.hpp
+1
-1
include/eos/fitting/fitting.hpp
include/eos/fitting/fitting.hpp
+1
-1
include/eos/fitting/linear_shape_fitting.hpp
include/eos/fitting/linear_shape_fitting.hpp
+1
-1
include/eos/fitting/nonlinear_camera_estimation.hpp
include/eos/fitting/nonlinear_camera_estimation.hpp
+1
-1
include/eos/morphablemodel/Blendshape.hpp
include/eos/morphablemodel/Blendshape.hpp
+1
-1
include/eos/morphablemodel/MorphableModel.hpp
include/eos/morphablemodel/MorphableModel.hpp
+1
-1
include/eos/morphablemodel/PcaModel.hpp
include/eos/morphablemodel/PcaModel.hpp
+1
-1
include/eos/morphablemodel/coefficients.hpp
include/eos/morphablemodel/coefficients.hpp
+1
-1
include/eos/morphablemodel/io/cvssp.hpp
include/eos/morphablemodel/io/cvssp.hpp
+1
-1
include/eos/morphablemodel/io/mat_cerealisation.hpp
include/eos/morphablemodel/io/mat_cerealisation.hpp
+3
-3
include/eos/render/Mesh.hpp
include/eos/render/Mesh.hpp
+1
-1
include/eos/render/detail/render_affine_detail.hpp
include/eos/render/detail/render_affine_detail.hpp
+1
-1
include/eos/render/detail/render_detail.hpp
include/eos/render/detail/render_detail.hpp
+1
-1
include/eos/render/detail/texture_extraction_detail.hpp
include/eos/render/detail/texture_extraction_detail.hpp
+1
-1
include/eos/render/render.hpp
include/eos/render/render.hpp
+1
-1
include/eos/render/render_affine.hpp
include/eos/render/render_affine.hpp
+1
-1
include/eos/render/texture_extraction.hpp
include/eos/render/texture_extraction.hpp
+1
-1
include/eos/render/utils.hpp
include/eos/render/utils.hpp
+1
-1
utils/json-to-cereal-binary.cpp
utils/json-to-cereal-binary.cpp
+1
-1
utils/scm-to-cereal.cpp
utils/scm-to-cereal.cpp
+1
-1
No files found.
examples/fit-model.cpp
View file @
112c2cf5
/*
/*
*
E
os - A 3D Morphable Model fitting library written in modern C++11/14.
*
e
os - A 3D Morphable Model fitting library written in modern C++11/14.
*
*
* File: examples/fit-model.cpp
* File: examples/fit-model.cpp
*
*
...
...
examples/generate-obj.cpp
View file @
112c2cf5
/*
/*
*
E
os - A 3D Morphable Model fitting library written in modern C++11/14.
*
e
os - A 3D Morphable Model fitting library written in modern C++11/14.
*
*
* File: examples/generate-obj.cpp
* File: examples/generate-obj.cpp
*
*
...
...
include/eos/core/Landmark.hpp
View file @
112c2cf5
/*
/*
*
E
os - A 3D Morphable Model fitting library written in modern C++11/14.
*
e
os - A 3D Morphable Model fitting library written in modern C++11/14.
*
*
* File: include/eos/core/Landmark.hpp
* File: include/eos/core/Landmark.hpp
*
*
...
...
include/eos/core/LandmarkMapper.hpp
View file @
112c2cf5
/*
/*
*
E
os - A 3D Morphable Model fitting library written in modern C++11/14.
*
e
os - A 3D Morphable Model fitting library written in modern C++11/14.
*
*
* File: include/eos/core/LandmarkMapper.hpp
* File: include/eos/core/LandmarkMapper.hpp
*
*
...
...
include/eos/fitting/affine_camera_estimation.hpp
View file @
112c2cf5
/*
/*
*
E
os - A 3D Morphable Model fitting library written in modern C++11/14.
*
e
os - A 3D Morphable Model fitting library written in modern C++11/14.
*
*
* File: include/eos/fitting/affine_camera_estimation.hpp
* File: include/eos/fitting/affine_camera_estimation.hpp
*
*
...
...
include/eos/fitting/blendshape_fitting.hpp
View file @
112c2cf5
/*
/*
*
E
os - A 3D Morphable Model fitting library written in modern C++11/14.
*
e
os - A 3D Morphable Model fitting library written in modern C++11/14.
*
*
* File: include/eos/fitting/blendshape_fitting.hpp
* File: include/eos/fitting/blendshape_fitting.hpp
*
*
...
...
include/eos/fitting/ceres_nonlinear.hpp
View file @
112c2cf5
/*
/*
*
E
os - A 3D Morphable Model fitting library written in modern C++11/14.
*
e
os - A 3D Morphable Model fitting library written in modern C++11/14.
*
*
* File: include/eos/fitting/ceres_nonlinear.hpp
* File: include/eos/fitting/ceres_nonlinear.hpp
*
*
...
...
include/eos/fitting/contour_correspondence.hpp
View file @
112c2cf5
/*
/*
*
E
os - A 3D Morphable Model fitting library written in modern C++11/14.
*
e
os - A 3D Morphable Model fitting library written in modern C++11/14.
*
*
* File: include/eos/fitting/contour_correspondence.hpp
* File: include/eos/fitting/contour_correspondence.hpp
*
*
...
...
include/eos/fitting/detail/nonlinear_camera_estimation_detail.hpp
View file @
112c2cf5
/*
/*
*
E
os - A 3D Morphable Model fitting library written in modern C++11/14.
*
e
os - A 3D Morphable Model fitting library written in modern C++11/14.
*
*
* File: include/eos/fitting/detail/nonlinear_camera_estimation_detail.hpp
* File: include/eos/fitting/detail/nonlinear_camera_estimation_detail.hpp
*
*
...
...
include/eos/fitting/fitting.hpp
View file @
112c2cf5
/*
/*
*
E
os - A 3D Morphable Model fitting library written in modern C++11/14.
*
e
os - A 3D Morphable Model fitting library written in modern C++11/14.
*
*
* File: include/eos/fitting/fitting.hpp
* File: include/eos/fitting/fitting.hpp
*
*
...
...
include/eos/fitting/linear_shape_fitting.hpp
View file @
112c2cf5
/*
/*
*
E
os - A 3D Morphable Model fitting library written in modern C++11/14.
*
e
os - A 3D Morphable Model fitting library written in modern C++11/14.
*
*
* File: include/eos/fitting/linear_shape_fitting.hpp
* File: include/eos/fitting/linear_shape_fitting.hpp
*
*
...
...
include/eos/fitting/nonlinear_camera_estimation.hpp
View file @
112c2cf5
/*
/*
*
E
os - A 3D Morphable Model fitting library written in modern C++11/14.
*
e
os - A 3D Morphable Model fitting library written in modern C++11/14.
*
*
* File: include/eos/fitting/nonlinear_camera_estimation.hpp
* File: include/eos/fitting/nonlinear_camera_estimation.hpp
*
*
...
...
include/eos/morphablemodel/Blendshape.hpp
View file @
112c2cf5
/*
/*
*
E
os - A 3D Morphable Model fitting library written in modern C++11/14.
*
e
os - A 3D Morphable Model fitting library written in modern C++11/14.
*
*
* File: include/eos/morphablemodel/Blendshape.hpp
* File: include/eos/morphablemodel/Blendshape.hpp
*
*
...
...
include/eos/morphablemodel/MorphableModel.hpp
View file @
112c2cf5
/*
/*
*
E
os - A 3D Morphable Model fitting library written in modern C++11/14.
*
e
os - A 3D Morphable Model fitting library written in modern C++11/14.
*
*
* File: include/eos/morphablemodel/MorphableModel.hpp
* File: include/eos/morphablemodel/MorphableModel.hpp
*
*
...
...
include/eos/morphablemodel/PcaModel.hpp
View file @
112c2cf5
/*
/*
*
E
os - A 3D Morphable Model fitting library written in modern C++11/14.
*
e
os - A 3D Morphable Model fitting library written in modern C++11/14.
*
*
* File: include/eos/morphablemodel/PcaModel.hpp
* File: include/eos/morphablemodel/PcaModel.hpp
*
*
...
...
include/eos/morphablemodel/coefficients.hpp
View file @
112c2cf5
/*
/*
*
E
os - A 3D Morphable Model fitting library written in modern C++11/14.
*
e
os - A 3D Morphable Model fitting library written in modern C++11/14.
*
*
* File: include/eos/morphablemodel/coefficients.hpp
* File: include/eos/morphablemodel/coefficients.hpp
*
*
...
...
include/eos/morphablemodel/io/cvssp.hpp
View file @
112c2cf5
/*
/*
*
E
os - A 3D Morphable Model fitting library written in modern C++11/14.
*
e
os - A 3D Morphable Model fitting library written in modern C++11/14.
*
*
* File: include/eos/morphablemodel/io/cvssp.hpp
* File: include/eos/morphablemodel/io/cvssp.hpp
*
*
...
...
include/eos/morphablemodel/io/mat_cerealisation.hpp
View file @
112c2cf5
/*
/*
* E
os - A 3D Morphable Model fitting library written in modern C++11/14.
* e
os - A 3D Morphable Model fitting library written in modern C++11/14.
*
*
* File: include/eos/morphablemodel/io/mat_cerealisation.hpp
* File: include/eos/morphablemodel/io/mat_cerealisation.hpp
*
*
* Copyright 2015, 2016 Patrik Huber
* Copyright 2015, 2016 Patrik Huber
*
*
...
...
include/eos/render/Mesh.hpp
View file @
112c2cf5
/*
/*
*
E
os - A 3D Morphable Model fitting library written in modern C++11/14.
*
e
os - A 3D Morphable Model fitting library written in modern C++11/14.
*
*
* File: include/eos/render/Mesh.hpp
* File: include/eos/render/Mesh.hpp
*
*
...
...
include/eos/render/detail/render_affine_detail.hpp
View file @
112c2cf5
/*
/*
*
E
os - A 3D Morphable Model fitting library written in modern C++11/14.
*
e
os - A 3D Morphable Model fitting library written in modern C++11/14.
*
*
* File: include/eos/render/detail/render_affine_detail.hpp
* File: include/eos/render/detail/render_affine_detail.hpp
*
*
...
...
include/eos/render/detail/render_detail.hpp
View file @
112c2cf5
/*
/*
*
E
os - A 3D Morphable Model fitting library written in modern C++11/14.
*
e
os - A 3D Morphable Model fitting library written in modern C++11/14.
*
*
* File: include/eos/render/detail/render_detail.hpp
* File: include/eos/render/detail/render_detail.hpp
*
*
...
...
include/eos/render/detail/texture_extraction_detail.hpp
View file @
112c2cf5
/*
/*
*
E
os - A 3D Morphable Model fitting library written in modern C++11/14.
*
e
os - A 3D Morphable Model fitting library written in modern C++11/14.
*
*
* File: include/eos/render/detail/texture_extraction_detail.hpp
* File: include/eos/render/detail/texture_extraction_detail.hpp
*
*
...
...
include/eos/render/render.hpp
View file @
112c2cf5
/*
/*
*
E
os - A 3D Morphable Model fitting library written in modern C++11/14.
*
e
os - A 3D Morphable Model fitting library written in modern C++11/14.
*
*
* File: include/eos/render/render.hpp
* File: include/eos/render/render.hpp
*
*
...
...
include/eos/render/render_affine.hpp
View file @
112c2cf5
/*
/*
*
E
os - A 3D Morphable Model fitting library written in modern C++11/14.
*
e
os - A 3D Morphable Model fitting library written in modern C++11/14.
*
*
* File: include/eos/render/render_affine.hpp
* File: include/eos/render/render_affine.hpp
*
*
...
...
include/eos/render/texture_extraction.hpp
View file @
112c2cf5
/*
/*
*
E
os - A 3D Morphable Model fitting library written in modern C++11/14.
*
e
os - A 3D Morphable Model fitting library written in modern C++11/14.
*
*
* File: include/eos/render/texture_extraction.hpp
* File: include/eos/render/texture_extraction.hpp
*
*
...
...
include/eos/render/utils.hpp
View file @
112c2cf5
/*
/*
*
E
os - A 3D Morphable Model fitting library written in modern C++11/14.
*
e
os - A 3D Morphable Model fitting library written in modern C++11/14.
*
*
* File: include/eos/render/utils.hpp
* File: include/eos/render/utils.hpp
*
*
...
...
utils/json-to-cereal-binary.cpp
View file @
112c2cf5
/*
/*
*
E
os - A 3D Morphable Model fitting library written in modern C++11/14.
*
e
os - A 3D Morphable Model fitting library written in modern C++11/14.
*
*
* File: utils/json-to-cereal-binary.cpp
* File: utils/json-to-cereal-binary.cpp
*
*
...
...
utils/scm-to-cereal.cpp
View file @
112c2cf5
/*
/*
*
E
os - A 3D Morphable Model fitting library written in modern C++11/14.
*
e
os - A 3D Morphable Model fitting library written in modern C++11/14.
*
*
* File: utils/scm-to-cereal.cpp
* File: utils/scm-to-cereal.cpp
*
*
...
...
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