Skip to content
Snippets Groups Projects
Select Git revision
3 results Searching

searchPublicSources.go

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    sift.m 183 B
    function siftPoints = sift(image)
        %Convert image to greyscale
        greyImage = rgb2gray(image);
        %Use inbuilt edge function
        siftPoints = detectSIFTFeatures(greyImage);
    end