Class BowUtils

java.lang.Object
boofcv.alg.scene.bow.BowUtils

public class BowUtils extends Object
Utility functions related to Bag-of-Words methods
  • Constructor Details

    • BowUtils

      public BowUtils()
  • Method Details

    • filterAndSortMatches

      public static void filterAndSortMatches(FastAccess<BowMatch> matches, @Nullable BoofLambdas.FilterInt filter, int limit)
      When dealing with 1 million images using quick select first makes a significant improvement Sorting everything was taking 300 to 500 ms before and after it was taking 15 to 45 ms.