Dealing with matrices: Eigen vs OpenCV
What is the best practice in ROS projects when you have to deal with NxM matrices, Nx1 (or Mx1) vectors, sums, multiplications and other basic stuff? Which approach is neater?
I usually use STL structures like std::vector
and I'd like to avoid boring cycles to convert data from one type to another, if possibile.
Thank you all.