Binary image feature extraction

조회 수: 1 (최근 30일)
Nisha Paul
Nisha Paul 2017년 6월 7일
답변: Gautam 2025년 1월 8일
I want to perform feature based image registration on two binary images.
What feature extraction algorithm should i use, to extract sufficient features from the binary images.

답변 (1개)

Gautam
Gautam 2025년 1월 8일
Hello Nisha,
The common feature extraction methods used for binary images are:
  1. 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.
  2. ORB: It can be particularly effective for binary images. USE the function “detectORBFeatures to implement this.
  3. BRISK: Another good algorithm that’s good for binary images. Use detectBRISKFeatures” for its implementation.
Here are the links to the functions for more information on them
  1. detectSIFTFeatures: https://www.mathworks.com/help/vision/ref/detectsiftfeatures.html
  2. detectORBFeatures: https://www.mathworks.com/help/vision/ref/detectorbfeatures.html
  3. detectBRISKFeatures: https://www.mathworks.com/help/vision/ref/detectbriskfeatures.html

카테고리

Help CenterFile Exchange에서 Geometric Transformation and Image Registration에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by