2012-10-17 15:12:04 +08:00
|
|
|
#ifndef _OPENCV_FLANN_PRECOMP_HPP_
|
|
|
|
#define _OPENCV_FLANN_PRECOMP_HPP_
|
|
|
|
|
|
|
|
#include <cstdio>
|
|
|
|
#include <cstdarg>
|
|
|
|
#include <sstream>
|
|
|
|
|
2013-03-13 20:22:44 +08:00
|
|
|
#include "opencv2/core.hpp"
|
2013-03-15 00:10:54 +08:00
|
|
|
#include "opencv2/core/utility.hpp"
|
2012-10-17 15:12:04 +08:00
|
|
|
|
|
|
|
#include "opencv2/flann/miniflann.hpp"
|
|
|
|
#include "opencv2/flann/dist.h"
|
|
|
|
#include "opencv2/flann/index_testing.h"
|
|
|
|
#include "opencv2/flann/params.h"
|
|
|
|
#include "opencv2/flann/saving.h"
|
|
|
|
#include "opencv2/flann/general.h"
|
|
|
|
#include "opencv2/flann/dummy.h"
|
|
|
|
|
|
|
|
// index types
|
|
|
|
#include "opencv2/flann/all_indices.h"
|
|
|
|
#include "opencv2/flann/flann_base.hpp"
|
|
|
|
|
2013-04-01 21:29:10 +08:00
|
|
|
#include "opencv2/core/private.hpp"
|
|
|
|
|
2012-10-17 15:12:04 +08:00
|
|
|
#endif
|