MATLAB: Is it possible to combine SURF and LBP feature vector? Thanks…

digital image processingimage analysisimage processinglbpsurf

I want to know whether is it possible to combine SURF and LBP face feature vector.. If so please do help me out how can i do?

Best Answer

Yes. You can create new feature vectors by appending other feature vectors together.
feats_to_use = [surf_feats(:); lbp_feats(:)];
I do not know if it makes sense to do this, but you can try.
Related Question