0

Currently for face detection I am using svm classifier over HOG feature set.But I need to implement other classifiers over those HOG feature set and compare the results between them .What other classifiers can I use other than svm?

Chaitu. Petluri
  • 45
  • 1
  • 1
  • 6

1 Answers1

0

There are plenty of other classification algorithms, a simple logistic regression could be a starting point. You could use logistic regression; implement gaussian process based classifier or random forrests/decision trees and many others with respective pro's and cons.

See e.g. this link for an overview

user3235916
  • 604
  • 7
  • 22