error in combine features code

조회 수: 10 (최근 30일)
hajer jon
hajer jon 2019년 8월 7일
댓글: hajer jon 2019년 8월 12일
Hi
i wrote i code to extract SURF and MSER featuers then compine featuers
i got error"Dimensions of arrays being concatenated are not consistent"
HOW CAN I FIXED THIS PROBLEM??AND WHATE THE NEXT CODE TO DETECT PEOPLE IN IMAGE??
[regon,d] = detectMSERFeatures(I1,'ThresholdDelta',2,'MaxAreaVariation',1);%
[features, valid_point3] = extractFeatures(I1,regon);
points=detectSURFFeatures(I1,'NumOctaves',1,'NumScaleLevels',3,'MetricThreshold',5000);
[features1, valid_point] = extractFeatures(I1,points);
comfeat=[features(:),features1(:)];
  댓글 수: 2
Walter Roberson
Walter Roberson 2019년 8월 7일
comfeat = [features(:); features1(:)];
hajer jon
hajer jon 2019년 8월 12일
Thank you so much

댓글을 달려면 로그인하십시오.

답변 (0개)

카테고리

Help CenterFile Exchange에서 Point Cloud Processing에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by