I used several methods to extract features and then identified the card in the right in other images.
The results of (ORB+FREAK),(FAST + FREAK) and SIFT is as follows. The question is how do I improve first two methods to achieve the results of SIFT. Or what can I use in a commercial product, which gives good results
FAST settings FastDetector fastCPU = new FastDetector(10, true); Freak descriptor = new Freak(true, true, 22.0f, 4);
ORB settings ORBDetector descriptor = new ORBDetector(400); Freak descriptor = new Freak(true, true, 22.0f, 4);