I am using the ORB feature detector to find matches between two images using this code:
FeatureDetector detector = FeatureDetector.create(FeatureDetector
To get better matching results you should include these filtering methods in the given order.
Perform matching in two directions i.e for each point in first image find the best match in second image and vice versa .
Perform ratio test(ratio test of euclidean distances) between matches to eliminate ambiguous matches .
You can get all the details of above methods in chapter 9 of Computer vision application programming cookbook. It also has sample code for implementing these filtering techniques. It is very easy to understand. (Note: The code in this book is in C++ but once you understand, it can be easily implemented in JAVA too)