How to combine features
    6 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
    hajer jon
 el 2 de Jul. de 2019
  
    
    
    
    
    Comentada: Sai Bhargav Avula
    
 el 29 de Jul. de 2019
            I write a code that detect people in crowed and I tray to use SURF , MSERF and HOG Features my quistion how can i combine this features ???
points1 = detectSURFFeatures(grayI)
[feature, valid_points] = extractFeatures(grayI, points1);
[regions,dd] = detectMSERFeatures(grayI);
 [features2, valid_points] = extractFeatures(grayI,regions);
[featureVector,hogVisualization] = extractHOGFeatures(grayI);
0 comentarios
Respuesta aceptada
  Sai Bhargav Avula
    
 el 17 de Jul. de 2019
        To get the combined feature vector use 
combinedVector = [feature( : ), features2 ( : ), featureVector( : )]; 
2 comentarios
  Sai Bhargav Avula
    
 el 29 de Jul. de 2019
				It is because features extracted are of different length. Check for the lengths of each feature vector and pad accordingly to combine them. I would suggest you to go through the following link that combines matrices of different sizes. 
Hope this helps. 
Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

