blob: 4c059f6bcf9c4c5a6bfd1d1a99618728f4474e7d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef test_feature_INC
#define test_feature_INC
#include <cmath>
#include <Eigen/Dense>
#include <iostream>
#include "camera.h"
#include "feature.h"
#include "types.h"
using namespace Eigen;
bool test_findDepth( Camera &cam );
#endif /* ----- #ifndef test_feature_INC ----- */
|