Borrar filtros
Borrar filtros

error in combine features code

1 visualización (últimos 30 días)
hajer jon
hajer jon el 7 de Ag. de 2019
Comentada: hajer jon el 12 de Ag. de 2019
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 comentarios
Walter Roberson
Walter Roberson el 7 de Ag. de 2019
comfeat = [features(:); features1(:)];
hajer jon
hajer jon el 12 de Ag. de 2019
Thank you so much

Iniciar sesión para comentar.

Respuestas (0)

Categorías

Más información sobre Computer Vision Toolbox en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by