Skip to content
Snippets Groups Projects
Commit 5acc5bf5 authored by Angel Santamaria-Navarro's avatar Angel Santamaria-Navarro
Browse files

minor change

parent f891df79
No related branches found
No related tags found
No related merge requests found
......@@ -15,6 +15,7 @@ KeyPointVector DetectorBase::detect(const cv::Mat& _image)
cv::Mat mask = cv::Mat::ones(_image.size(), CV_8U);
return detect(_image, mask);
}
KeyPointVector DetectorBase::detect(const cv::Mat& _image, const cv::Mat& _mask)
{
KeyPointVector kpts;
......@@ -25,7 +26,6 @@ KeyPointVector DetectorBase::detect(const cv::Mat& _image, const cv::Mat& _mask)
return kpts;
}
KeyPointVector DetectorBase::detect(const cv::Mat& _image, cv::Rect& _roi)
{
// FIX this
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment