Where to find implementation of BFMatcher::match
I want to study the implementation of BFMatcher to make some modifications.
I have found this file: https://github.com/opencv/opencv/blob..., which contains implementation of ocl_match in BFMatcher, but I am not able to find any implementation for ordinary match. Where can I find the code that executes when BFMatcher.match(...) is called if HAVE_OPENCL is not true?
Thanks!