Repository for OpenCV's extra modules
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

69 lines
1.6 KiB

#ifndef CVVISUAL_MATCH_SELECTION_SELECTOR
#define CVVISUAL_MATCH_SELECTION_SELECTOR
#include <vector>
#include "opencv2/features2d.hpp"
#include "matchselection.hpp"
#include "../registerhelper.hpp"
namespace cvv{ namespace qtutil{
/**
* @brief this class can use different MatchSelection
* you can register functions which take a std::vector<cv::DMatch> as argument.
*/
class MatchSelectionSelector:public MatchSelection,public RegisterHelper<MatchSelection,std::vector<cv::DMatch>>{
Q_OBJECT
public:
/**
* @brief the constructor
*/
MatchSelectionSelector(const std::vector<cv::DMatch>& univers,QWidget * parent=nullptr);
/**
* @brief select matches of the given selection
* @return the selected matches
*/
std::vector<cv::DMatch> select(const std::vector<cv::DMatch>& selection) CV_OVERRIDE;
public slots:
/**
* @brief emits the signal remove with this.
*/
void removeMe()
{emit remove(this);}
signals:
/**
* @brief this signal contains a KeyPointSelectionSelector which should be removed. Normally the argumen is this.
*/
void remove(MatchSelectionSelector*);
private slots:
/**
* @brief swap the current MatchSelection if the user choose another.
*/
virtual void changeSelector();
private:
MatchSelection * selection_=nullptr;
std::vector<cv::DMatch> univers_;
QLayout *layout_;
};
template <class Selection>
bool registerMatchSelection(const QString &name)
{
return MatchSelectionSelector::registerElement(
name, [](std::vector<cv::DMatch> univers)
{
return std::unique_ptr<MatchSelection>{ new Selection{univers}};
});
}
}}
#endif