detectSIFTFeatures only working for uint8
Show older comments
I = imread('cameraman.tif');
points = detectSIFTFeatures(I);
Gives me heaps of points as expected
I = imread('cameraman.tif');
points = detectSIFTFeatures(double(I));
gives no points. The same zero points retured for anything other than uint8, for every image I've tried. The same behaviour is true for SURF points.
Does anyone have any suggestions?
Accepted Answer
More Answers (1)
Categories
Find more on Point Cloud Processing in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!