can any one explain to me how they use SURF and MSER in this page of matlab Extract interest point descriptors

4 ビュー (過去 30 日間)
i need to explain to me how they use MSRE and SURF
in that line "Find features using MSER with SURF feature descriptor."

採用された回答

Kavya Vuriti
Kavya Vuriti 2019 年 8 月 5 日
Hi,
MSER is based on taking regions that stay same for wide range of thresholds. It basically extracts co-variant regions from an image. In the particular example of Find features using MSER with SURF feature descriptor.
%Extracts the regions that stay same in the image.
regions = detectMSERFeatures(I);
%Extracts the surf features from the regions that are obtained from the detectMSERFeatures function.
[features, valid_points] = extractFeatures(I,regions,'Upright',true);
MSER gives the regions that are distributed over the entire image. Describing the SURF features over these regions will aid in the feature tracking.
  3 件のコメント
Kavya Vuriti
Kavya Vuriti 2019 年 8 月 6 日
Using MSER, get the regions of the people in the frame and use SURF over these regions for feature description and use them for tracking.
hajer jon
hajer jon 2019 年 8 月 6 日
the same code in above ? or deffrent if so could you please write it
thank you

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeFeature Detection and Extraction についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by