Ask Your Question

_Eleanore_'s profile - activity

2014-09-02 03:51:38 -0600 asked a question Java: dense SIFT?

Hello,

I have written my Java code for the detection of keypoints using SIFT, as follows:

FeatureDetector featureDetector = FeatureDetector.create(FeatureDetector.SIFT);
MatOfKeyPoint keypoints = new MatOfKeyPoint();
featureDetector.detect(image, keypoints);

where image is a Mat variable containing the image.

However, I am not sure how to compute the dense SIFT descriptors, as contained in the PHOW computation of the VLFeat library. Is there a way of doing this?

Thank you in advance.