Ask Your Question

ascentof's profile - activity

2015-03-25 06:30:29 -0600 received badge  Student (source)
2015-03-25 03:29:10 -0600 asked a question Registration module crashes

Hi,

I was trying to use the new registration module from opencv_contrib.

I used the example code.

cv::reg::MapperGradProj mapper;
cv::Ptr<cv::reg::Map> mapPtr;
cv::reg::MapperPyramid mappPyr(mapper);
mappPyr.calculate(oimage,oimage2, mapPtr);

The program already fails calling the calculate function.

Error in ... free(): invalid next size (normal): 0x0000000002a5a590

Edit: Got it. I had to convert the image to float first.

2014-10-15 09:52:27 -0600 received badge  Editor (source)
2014-10-15 09:51:53 -0600 asked a question FAST Feature Detector and SIFT Feature Descriptor

I'm currently testing some Feature Detectors and Descriptors on some images. I'm matching an image with the rotated version of itself and had a higher percentage of correct matches using Fast Feature Detector and SIFT Feature Descriptor, than using SIFT Feature Detector and Descriptor.
The keypoints found by the FAST Feature Detector don't have any information for the orientation of the keypoint. So how does the SIFT Feature Descriptor work with those keypoints? Does it just use 0 degrees as orientation or does it compute the orientation itself?