HOW to combine between SURF features and HOG features

조회 수: 7 (최근 30일)
AHMED ALMARZOOQI
AHMED ALMARZOOQI 2015년 9월 14일
답변: SATISH KUMAR 2019년 12월 19일
im doing my experiment using matlab i want code thats combine between SURF features and HOG features
  댓글 수: 3
Chidiebere Ike
Chidiebere Ike 2018년 3월 17일
Hello Ahmed, can you share the code (combination of SURF features and HOG features) to my email chidosky4ril@yahoo.com. Thank you
chetna kaushal
chetna kaushal 2019년 8월 5일
hy . can you please help me out too

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

답변 (3개)

Dima Lisin
Dima Lisin 2015년 12월 4일
Hi Ahmed,
It would help if you could tell us more about what you are trying to do.
The extractHOGFeatures function in the Computer Vision System Toolbox has two different modes. The most common mode is to compute a single HOG descriptor for the entire image. The second mode is to compute multiple HOG descriptors centered around a given set of image points, similar to what extractFeatures does for SURF or FREAK descriptors.
As to how to combine SURF and HOG, that depends on what it is you are trying to do. If you are using the bag-of-features approach for image classification, you may want to concatenate the bag-of-features histogram with a HOG vector computed over the entire image. If you want to match features, you can try concatenating individual SURF descriptors with HOG descriptors. Or you can extract SURF descriptors from one set of points, and HOG descriptors from another.
  댓글 수: 1
sonia carole
sonia carole 2016년 1월 4일
Thanks Dima Lisin for your answer I want to extract HOG features for image classification using bag-of features. How can make the concatenation between the queries HOG feature vector and database HOG feature vector

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


swapnali ware
swapnali ware 2019년 7월 16일
can I use comination for HOG and SURF features for character recognition for better performance??

SATISH KUMAR
SATISH KUMAR 2019년 12월 19일
how to combine SURF and HOG
here is the simple solution as per my knowledge and i have used also
surf = [surf_features];
HOG = [hog_features];;
combined_Features = [surf_features,hog_features];
now you have the simple concatenated feature set.
hope this will help you.

태그

Community Treasure Hunt

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

Start Hunting!

Translated by