Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

Reduce maximal Features on Android.

Hi there, is it possible to reduce the feature count of FAST, ORB, STAR or BRISK with the OpenCV4Android Library?

The usual Feature detection looks like this:

private static MatOfKeyPoint detectFeatures(Mat inputPicture) {
    FeatureDetector featureDetector = FeatureDetector.create(FEATURE_DETECTOR_METHOD);
    MatOfKeyPoint matOfKeyPoint = new MatOfKeyPoint();
    featureDetector.detect(inputPicture, matOfKeyPoint);
    return matOfKeyPoint;
}

But is it possible to setup any Settings?

Thanks