Skip to content
Snippets Groups Projects
Commit 90c7cfce authored by Rainer Kartmann's avatar Rainer Kartmann
Browse files

Merge remote-tracking branch 'origin/master' into aron/image

parents 2e64c95e 90e63cf9
No related branches found
No related tags found
1 merge request!193Add proper Image type to Aron and improve visualization in MemoryViewer + some ArMem refactorings
...@@ -16,7 +16,6 @@ ...@@ -16,7 +16,6 @@
#include <ArmarXCore/core/exceptions/local/ExpressionException.h> #include <ArmarXCore/core/exceptions/local/ExpressionException.h>
#include <SimoxUtility/EigenStdVector.h>
#include <SimoxUtility/math/normal/normal_to_mat4.h> #include <SimoxUtility/math/normal/normal_to_mat4.h>
#include <SimoxUtility/math/convert/rpy_to_mat3f.h> #include <SimoxUtility/math/convert/rpy_to_mat3f.h>
#include <SimoxUtility/math/pose/transform.h> #include <SimoxUtility/math/pose/transform.h>
......
...@@ -2,8 +2,9 @@ ...@@ -2,8 +2,9 @@
#include <functional> #include <functional>
#include <numeric> // for std::accumulate #include <numeric> // for std::accumulate
#include <vector>
#include <SimoxUtility/EigenStdVector.h> #include <Eigen/Core>
#include <ArmarXCore/util/CPPUtility/Iterator.h> #include <ArmarXCore/util/CPPUtility/Iterator.h>
#include <ArmarXCore/core/exceptions/local/ExpressionException.h> #include <ArmarXCore/core/exceptions/local/ExpressionException.h>
......
#include <SimoxUtility/EigenStdVector.h>
#include "ElementVisualizer.h" #include "ElementVisualizer.h"
#include <RobotAPI/components/ArViz/IceConversions.h> #include <RobotAPI/components/ArViz/IceConversions.h>
......
...@@ -32,7 +32,6 @@ ...@@ -32,7 +32,6 @@
#include <shared_mutex> #include <shared_mutex>
// Eigen // Eigen
#include <SimoxUtility/EigenStdVector.h>
#include <Eigen/Geometry> #include <Eigen/Geometry>
// Ice // Ice
......
...@@ -60,7 +60,6 @@ set(LIB_FILES ...@@ -60,7 +60,6 @@ set(LIB_FILES
) )
set(LIB_HEADERS set(LIB_HEADERS
EigenStl.h
PIDController.h PIDController.h
MultiDimPIDController.h MultiDimPIDController.h
Trajectory.h Trajectory.h
......
/*
* This file is part of ArmarX.
*
* ArmarX is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*
* ArmarX is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @author Simon Ottenhaus (simon dot ottenhaus at kit dot edu)
* @copyright http://www.gnu.org/licenses/gpl-2.0.txt
* GNU General Public License
*/
// allow std vector to be used with Eigen objects
#include<Eigen/StdVector>
#ifndef EIGEN_STL_VECTOR_SPECIFICATION_DEFINED
#define EIGEN_STL_VECTOR_SPECIFICATION_DEFINED
EIGEN_DEFINE_STL_VECTOR_SPECIALIZATION(Eigen::Vector2f)
EIGEN_DEFINE_STL_VECTOR_SPECIALIZATION(Eigen::Vector3f)
EIGEN_DEFINE_STL_VECTOR_SPECIALIZATION(Eigen::Vector4f)
EIGEN_DEFINE_STL_VECTOR_SPECIALIZATION(Eigen::VectorXf)
EIGEN_DEFINE_STL_VECTOR_SPECIALIZATION(Eigen::Matrix2f)
EIGEN_DEFINE_STL_VECTOR_SPECIALIZATION(Eigen::Matrix3f)
EIGEN_DEFINE_STL_VECTOR_SPECIALIZATION(Eigen::Matrix4f)
EIGEN_DEFINE_STL_VECTOR_SPECIALIZATION(Eigen::MatrixXf)
EIGEN_DEFINE_STL_VECTOR_SPECIALIZATION(Eigen::Vector3d)
EIGEN_DEFINE_STL_VECTOR_SPECIALIZATION(Eigen::Vector3i)
#endif
...@@ -23,7 +23,6 @@ ...@@ -23,7 +23,6 @@
*/ */
#pragma once #pragma once
#include <RobotAPI/libraries/core/EigenStl.h>
#include <ArmarXCore/observers/filters/MedianFilter.h> #include <ArmarXCore/observers/filters/MedianFilter.h>
#include <RobotAPI/libraries/core/FramedPose.h> #include <RobotAPI/libraries/core/FramedPose.h>
#include <RobotAPI/interface/core/PoseBase.h> #include <RobotAPI/interface/core/PoseBase.h>
......
...@@ -23,7 +23,6 @@ ...@@ -23,7 +23,6 @@
*/ */
#pragma once #pragma once
#include <RobotAPI/libraries/core/EigenStl.h>
#include <ArmarXCore/observers/filters/MedianFilter.h> #include <ArmarXCore/observers/filters/MedianFilter.h>
#include <RobotAPI/libraries/core/FramedPose.h> #include <RobotAPI/libraries/core/FramedPose.h>
#include <RobotAPI/interface/core/PoseBase.h> #include <RobotAPI/interface/core/PoseBase.h>
...@@ -69,5 +68,3 @@ namespace armarx::filters ...@@ -69,5 +68,3 @@ namespace armarx::filters
}; };
} // namespace Filters } // namespace Filters
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment