I want Matlab code of SIFT algorithm . I use it for "Human Activities Recognition" in Video.
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
I want Matlab code of SIFT algorithm . I use it for "Human Activities Recognition" in Video.
0 Kommentare
Antworten (1)
Gayathri
am 5 Feb. 2025
From MATLAB R2021b release, "detectSIFTFeatures" has been introduced to detect scale invariant feature transform (SIFT) features. This function detects SIFT features in the 2-D grayscale or binary input image I and returns a "SIFTPoints" object.
Please refer to the below code to know more about the usage of "detectSIFTFeatures" function.
I = imread('cameraman.tif');
points = detectSIFTFeatures(I);
% Display the results
imshow(I);
hold on;
plot(points.selectStrongest(10))
Please refer to the below documentation link to know more about the function.
Hope this helps!
1 Kommentar
Walter Roberson
am 5 Feb. 2025
@Walaa Jasim asked for the source code of SIFT -- the actual implementation.
The implementation code is implemented in C++ and the code does not appear to be published.
Siehe auch
Kategorien
Mehr zu SIFT - Scale Invariant Feature Transform finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!