First time here? Check out the FAQ!
answered 2020-02-04 14:41:44 -0600
Problem solved after changing BFMatcher bf = new BFMatcher(Core.NORM_HAMMING); to DescriptorMatcher bf = DescriptorMatcher.create(DescriptorMatcher.BRUTEFORCE_HAMMING);
BFMatcher bf = new BFMatcher(Core.NORM_HAMMING);
DescriptorMatcher bf = DescriptorMatcher.create(DescriptorMatcher.BRUTEFORCE_HAMMING);