I am getting this error while trying to store the unmatched features of a frame in brisk features extraction.. Please someone help

조회 수: 1 (최근 30일)

채택된 답변

Walter Roberson
Walter Roberson 2015년 5월 17일
You cannot index features2() by anything other than a scalar. It is of class binaryFeatures. If you want the features vector you need to access it:
features2.Features
is something that you could index.

추가 답변 (1개)

Dima Lisin
Dima Lisin 2015년 5월 18일
Hi Pritam,
Walter is absolutely correct. You cannot have an array binaryFeatures objects. However, you can store them in a cell array. You can also use vertical concatenation to combine two sets of features into a single binaryFeatures object: c = [a; b].

카테고리

Help CenterFile Exchange에서 Explore and Edit Images with Image Viewer App에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by