How to find union of two SURFPOINTS variables?

1 回表示 (過去 30 日間)
soumyajit datta
soumyajit datta 2019 年 4 月 25 日
編集済み: Qu Cao 2019 年 11 月 19 日
I have SURFPOINTS variables
surf1=detectSURFFeatures(Img1);
surf2=detectSURFFeatures(Img2);
How to find UNION of the two surfpoints surf1 & surf2 so that i get an object which is contains all surf features from both images and no repetition of features occur.
The straight forward union function is not working in case of surfpoints
surf3=union(surf1,surf2)
is throwing up error that sort feature is not aplicable for surfpoints object

回答 (1 件)

Qu Cao
Qu Cao 2019 年 11 月 19 日
編集済み: Qu Cao 2019 年 11 月 19 日
surf3 = union(surf1, surf2, 'rows');

カテゴリ

Help Center および File ExchangeComputer Vision with Simulink についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by