2014-05-11 23:57:08 +00:00
|
|
|
/*
|
2014-08-06 13:43:29 +00:00
|
|
|
Copyright (c) 2011-2014, Mathieu Labbe - IntRoLab - Universite de Sherbrooke
|
|
|
|
|
All rights reserved.
|
|
|
|
|
|
|
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
|
|
|
modification, are permitted provided that the following conditions are met:
|
|
|
|
|
* Redistributions of source code must retain the above copyright
|
|
|
|
|
notice, this list of conditions and the following disclaimer.
|
|
|
|
|
* Redistributions in binary form must reproduce the above copyright
|
|
|
|
|
notice, this list of conditions and the following disclaimer in the
|
|
|
|
|
documentation and/or other materials provided with the distribution.
|
|
|
|
|
* Neither the name of the Universite de Sherbrooke nor the
|
|
|
|
|
names of its contributors may be used to endorse or promote products
|
|
|
|
|
derived from this software without specific prior written permission.
|
|
|
|
|
|
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
|
|
|
|
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
|
|
|
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
2014-08-11 15:49:53 +00:00
|
|
|
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY
|
2014-08-06 13:43:29 +00:00
|
|
|
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
|
|
|
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
|
|
|
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
|
|
|
|
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
|
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
|
|
|
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
*/
|
2014-05-11 23:57:08 +00:00
|
|
|
|
|
|
|
|
#ifndef VOCABULARY_H_
|
|
|
|
|
#define VOCABULARY_H_
|
|
|
|
|
|
|
|
|
|
#include <QtCore/QMultiMap>
|
2014-05-12 22:58:57 +00:00
|
|
|
#include <QtCore/QVector>
|
2014-05-11 23:57:08 +00:00
|
|
|
#include <opencv2/opencv.hpp>
|
|
|
|
|
|
2014-08-06 13:43:29 +00:00
|
|
|
namespace find_object {
|
|
|
|
|
|
2014-05-11 23:57:08 +00:00
|
|
|
class Vocabulary {
|
|
|
|
|
public:
|
|
|
|
|
Vocabulary();
|
|
|
|
|
virtual ~Vocabulary();
|
|
|
|
|
|
|
|
|
|
void clear();
|
2014-07-31 19:02:31 +00:00
|
|
|
QMultiMap<int, int> addWords(const cv::Mat & descriptors, int objectId, bool incremental);
|
2014-05-11 23:57:08 +00:00
|
|
|
void update();
|
|
|
|
|
void search(const cv::Mat & descriptors, cv::Mat & results, cv::Mat & dists, int k);
|
2014-05-12 22:58:57 +00:00
|
|
|
int size() const {return indexedDescriptors_.rows + notIndexedDescriptors_.rows;}
|
2014-05-11 23:57:08 +00:00
|
|
|
const QMultiMap<int, int> & wordToObjects() const {return wordToObjects_;}
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
cv::flann::Index flannIndex_;
|
2014-05-12 22:58:57 +00:00
|
|
|
cv::Mat indexedDescriptors_;
|
|
|
|
|
cv::Mat notIndexedDescriptors_;
|
2014-07-31 19:02:31 +00:00
|
|
|
QMultiMap<int, int> wordToObjects_; // <wordId, ObjectId>
|
2014-05-12 22:58:57 +00:00
|
|
|
QVector<int> notIndexedWordIds_;
|
2014-05-11 23:57:08 +00:00
|
|
|
};
|
|
|
|
|
|
2014-08-06 13:43:29 +00:00
|
|
|
} // namespace find_object
|
|
|
|
|
|
2014-05-11 23:57:08 +00:00
|
|
|
#endif /* VOCABULARY_H_ */
|