detectSIFTFeatures only working for uint8
Mostrar comentarios más antiguos
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?
Respuesta aceptada
Más respuestas (1)
Categorías
Más información sobre Point Cloud Processing en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!