Commit 33b9e4b4 authored by Ievgen Khvedchenia's avatar Ievgen Khvedchenia

Added missing operator()

parent 36db9706
......@@ -31,6 +31,10 @@ namespace cv
return NORM_L2;
}
void KAZE::operator()(InputArray image, InputArray mask, std::vector<KeyPoint>& keypoints) const
{
detectImpl(image, keypoints, mask);
}
void KAZE::operator()(InputArray image, InputArray mask,
std::vector<KeyPoint>& keypoints,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment