An open API service indexing awesome lists of open source software.

https://github.com/anybotics/eigen_utils


https://github.com/anybotics/eigen_utils

Last synced: 3 months ago
JSON representation

Awesome Lists containing this project

README

          

\page page_eigen_utils Eigen Utils

# Eigen Utils

## Overview
This package provides common utilities around the eigen library.

### Unit Tests

Run the unit tests with

catkin run_tests eigen_utils

## Usage

### Testing

```
#include

cv::Mat myFirstMat;
cv::Mat mySecondMat;

...

ASSERT_MATRICES_EQ_WITH_NAN(myFirstMat, mySecondMat);

```