I am using a SIFT as a feature detector in a program, creating it with the default options:
cv::SiftFeatureDetector detector;
When I use the detection function (detector.detect( image, keypoints );) it throws me the an out of memory error:
OpenCV Error: Insufficient memory (Failed to allocate 100663300 bytes) in OutOfMemoryError
Anyone has an idea from where this error comes and how to solve it?
Thanks in advance!