Ask Your Question

stetro's profile - activity

2013-06-28 02:37:16 -0600 received badge  Scholar (source)
2013-06-26 17:28:17 -0600 received badge  Student (source)
2013-06-26 09:06:53 -0600 received badge  Supporter (source)
2013-06-26 07:56:26 -0600 asked a question 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

2013-06-26 07:42:18 -0600 commented answer Does findHomography use DLT with SVD when there are more than 4 points?

How about Least-Median of Squares? Isn't it a way to solve a over-determined linear system?