Я пытаюсь расширить класс Ref Eigen
, чтобы использовать пользовательские классы.У меня есть следующий код:
#include <iostream>
#include <eigen3/Eigen/Dense>
class Interface {
public:
virtual ~Interface() {
}
virtual void customMethod() const = 0;
};
class MyVectorType: public Eigen::Matrix<double, 3, 1, Eigen::DontAlign>,
public Interface {
public:
MyVectorType(void) :
Eigen::Matrix<double, 3, 1, Eigen::DontAlign>() {
}
typedef Eigen::Matrix<double, 3, 1, Eigen::DontAlign> Base;
// This constructor allows you to construct MyVectorType from Eigen expressions
template<typename OtherDerived>
MyVectorType(const Eigen::MatrixBase<OtherDerived>& other) :
Eigen::Matrix<double, 3, 1, Eigen::DontAlign>(other) {
}
// This method allows you to assign Eigen expressions to MyVectorType
template<typename OtherDerived>
MyVectorType & operator=(const Eigen::MatrixBase<OtherDerived>& other) {
this->Base::operator=(other);
return *this;
}
virtual void customMethod() const {
std::cout << rows() << std::endl;
}
};
template<typename T, int Options>
class MyRef: public Eigen::Ref<typename T::Base, Options, Eigen::Stride<0, 0> >,
public Interface {
public:
typedef Eigen::Ref<typename T::Base, Options, Eigen::Stride<0, 0> > Base;
template<typename Derived>
MyRef(Eigen::DenseBase<Derived>& expr) :
Eigen::Ref<typename T::Base, Options, Eigen::Stride<0, 0> >(expr) {
}
virtual void customMethod() const {
std::cout << rows() << std::endl; // <-----error
}
EIGEN_INHERIT_ASSIGNMENT_OPERATORS(MyRef)};
template<typename T, int Options>
class MyRef<const T, Options> : public Eigen::Ref<typename T::Base, Options,
Eigen::Stride<0, 0> >, public Interface {
public:
template<typename Derived>
MyRef(const Eigen::DenseBase<Derived>& expr) :
Eigen::Ref<typename T::Base, Options, Eigen::Stride<0, 0> >(expr) {
}
virtual void customMethod() const {
std::cout << rows() << std::endl; // <-----error
}
};
void init(MyRef<MyVectorType, Eigen::Unaligned> m) {
m.customMethod();
}
int main() {
Eigen::Matrix<double, Eigen::Dynamic, Eigen::Dynamic, Eigen::AutoAlign, 12,
12> mm(3, 1);
Eigen::Map<MyVectorType::Base> map(mm.data(), 3, 1);
MyRef<MyVectorType, Eigen::Unaligned> ref(map);
init(ref);
std::cout << mm << std::endl;
return 0;
}
Для вызова пользовательских методов, таких как метод init()
, необходимо использовать один и тот же интерфейс между MyVectorType
и MyRef
.Поэтому я подумал использовать класс Interface
.
Проблема: этот код не компилируется, потому что я не могу вызвать rows()
внутри MyRef
, поэтому я не понимаю, как получить доступ к MyVectorType
или базовым данным в Ref
класс для вызова других методов.
Я пытался с помощью derived()
получить доступ, но он не работает.Я посмотрел на исходный код, но я не понимаю, как Ref
может нормально использоваться со всеми интерфейсами DenseBase
.Я хотел бы сделать то же самое для моих пользовательских методов.
Ошибка Gcc:
../main.cpp:49:16: error: there are no arguments to ‘rows’ that depend on a template parameter, so a declaration of ‘rows’ must be available [-fpermissive]
std::cout << rows() << std::endl;
^~~~
../main.cpp:49:16: note: (if you use ‘-fpermissive’, G++ will accept your code, but allowing the use of an undeclared name is deprecated)
../main.cpp: In member function ‘virtual void MyRef<const T, Options>::customMethod() const’:
../main.cpp:63:16: error: there are no arguments to ‘rows’ that depend on a template parameter, so a declaration of ‘rows’ must be available [-fpermissive]
std::cout << rows() << std::endl;
^~~~