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
3be8e145
Commit
3be8e145
authored
Nov 07, 2016
by
Patrik Huber
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added serialisation for glm::quat
parent
f40904f0
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
54 additions
and
2 deletions
+54
-2
CMakeLists.txt
CMakeLists.txt
+1
-0
include/eos/fitting/RenderingParameters.hpp
include/eos/fitting/RenderingParameters.hpp
+2
-2
include/eos/fitting/detail/glm_cerealisation.hpp
include/eos/fitting/detail/glm_cerealisation.hpp
+51
-0
No files found.
CMakeLists.txt
View file @
3be8e145
...
...
@@ -108,6 +108,7 @@ set(HEADERS
include/eos/fitting/nonlinear_camera_estimation.hpp
include/eos/fitting/detail/nonlinear_camera_estimation_detail.hpp
include/eos/fitting/detail/optional_cerealisation.hpp
include/eos/fitting/detail/glm_cerealisation.hpp
include/eos/fitting/linear_shape_fitting.hpp
include/eos/fitting/contour_correspondence.hpp
include/eos/fitting/blendshape_fitting.hpp
...
...
include/eos/fitting/RenderingParameters.hpp
View file @
3be8e145
...
...
@@ -29,6 +29,7 @@
#include "glm/gtc/quaternion.hpp"
#include "eos/fitting/detail/optional_cerealisation.hpp"
#include "eos/fitting/detail/glm_cerealisation.hpp"
#include "cereal/cereal.hpp"
#include "cereal/archives/json.hpp"
...
...
@@ -181,8 +182,7 @@ private:
template
<
class
Archive
>
void
serialize
(
Archive
&
archive
)
{
// TODO add the quaternion!
archive
(
CEREAL_NVP
(
camera_type
),
CEREAL_NVP
(
frustum
),
CEREAL_NVP
(
t_x
),
CEREAL_NVP
(
t_y
),
CEREAL_NVP
(
screen_width
),
CEREAL_NVP
(
screen_height
));
archive
(
CEREAL_NVP
(
camera_type
),
CEREAL_NVP
(
frustum
),
CEREAL_NVP
(
rotation
),
CEREAL_NVP
(
t_x
),
CEREAL_NVP
(
t_y
),
CEREAL_NVP
(
screen_width
),
CEREAL_NVP
(
screen_height
));
};
};
...
...
include/eos/fitting/detail/glm_cerealisation.hpp
0 → 100644
View file @
3be8e145
/*
* eos - A 3D Morphable Model fitting library written in modern C++11/14.
*
* File: include/eos/fitting/detail/glm_cerealisation.hpp
*
* Copyright 2016 Patrik Huber
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#pragma once
#ifndef GLMCEREALISATION_HPP_
#define GLMCEREALISATION_HPP_
#include "cereal/cereal.hpp"
#include "glm/gtc/quaternion.hpp"
/**
* @brief Serialisation of GLM \c glm::quat quaternion for the serialisation
* library cereal (http://uscilab.github.io/cereal/index.html).
*
* Contains serialisation for \c glm::quat.
*/
namespace
glm
{
/**
* @brief Serialisation of a glm::quat using cereal.
*
* @param[in] ar The archive to (de)serialise.
* @param[in] vec The vector to (de)serialise.
*/
template
<
class
Archive
>
void
serialize
(
Archive
&
ar
,
glm
::
quat
&
q
)
{
ar
(
q
.
w
,
q
.
x
,
q
.
y
,
q
.
z
);
};
}
/* namespace glm */
#endif
/* GLMCEREALISATION_HPP_ */
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