detectSIFTFeatures only working for uint8
Afficher commentaires plus anciens
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?
Réponse acceptée
Plus de réponses (1)
Catégories
En savoir plus sur Point Cloud Processing dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!