libvot  0.1.3
A C++11 multithread library for image retrieval
opencv_libvot_api.h
Go to the documentation of this file.
1 
7 #ifndef OPENCV_LIBVOT_API_H
8 #define OPENCV_LIBVOT_API_H
9 
10 #include <opencv2/core/core.hpp>
11 #include <opencv2/highgui/highgui.hpp>
12 #include <opencv2/nonfree/features2d.hpp>
13 
14 namespace tw {
15 class SiftData;
16 
17 bool OpencvKeyPoints2libvotSift(std::vector<cv::KeyPoint> &key_points,
18  cv::Mat &descriptors,
19  tw::SiftData &sift_data);
20 
21 } // end of namespace tw
22 
23 #endif
bool OpencvKeyPoints2libvotSift(std::vector< cv::KeyPoint > &key_points, cv::Mat &descriptors, tw::SiftData &sift_data)
Definition: opencv_libvot_api.cpp:13
Sift data structure used in libvot.
Definition: data_types.h:22
namespace tw is mostly related to some utility functions developed by the repository owner...
Definition: opencv_libvot_api.cpp:12