This is a follow-up question to the previously posted question about using OpenCVs dense sift implementation in python (OpenCV-Python dense SIFT).
Using the suggested code for a dense sift
dense=cv2.FeatureDetector_create("Dense")
kp=dense.detect(imgGray)
kp,des=sift.compute(imgGray,kp)
I have the following questions:
- Can I access any of the DenseFeatureDetector properties in python? Set or at least read?
- What is the logic behind c++s FeatureDetector::create becoming pythons FeatureDetector_create? How can I know that based on the documentation (http://docs.opencv.org/modules/features2d/doc/common_interfaces_of_feature_detectors.html)?
- Any recommendation on a python wrapper for VLFeat Library? Is pyvlfeat still the way to go (I tried to setup pyvlfeat but it didn't compile on my mac)?
Thanks!