- SIFT: Although traditionally used for grayscale images, it can be applied to binary images after some preprocessing. Use the MATLAB function “detectSIFTFeatures” to implement this.
- ORB: It can be particularly effective for binary images. USE the function “detectORBFeatures” to implement this.
- BRISK: Another good algorithm that’s good for binary images. Use “detectBRISKFeatures” for its implementation.
- detectSIFTFeatures: https://www.mathworks.com/help/vision/ref/detectsiftfeatures.html
- detectORBFeatures: https://www.mathworks.com/help/vision/ref/detectorbfeatures.html
- detectBRISKFeatures: https://www.mathworks.com/help/vision/ref/detectbriskfeatures.html