#include "matchselection.hpp"#include "../portionselector.hpp"namespacecvv{namespaceqtutil{/** * @brief this class use the PortionSelector for Matches */classMatchPortionSelection:publicMatchSelection{public:/** * @brief the constructor * @param parent the parent widget */MatchPortionSelection(std::vector<cv::DMatch>,QWidget*parent=nullptr);/** * @brief see MatchSelection */virtualstd::vector<cv::DMatch>select(conststd::vector<cv::DMatch>&selection)override;private:PortionSelector*selector_;};}}#endif