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 CenterFile Exchange에서 Computer Vision with Simulink에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by