Skip to content
Snippets Groups Projects
Select Git revision
  • d25e2461cf02f54d7605c422ec5e8945c69cdabd
  • main default protected
  • Tormod
  • Alex
  • Martin
  • mqttTest
6 results

docker-compose.yml

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