SvmModel

Description

Created model that has to be used by Support Vector Machine related filters.

Object of this type can exist in three states:

  • Not initialized - before model is processed by SVM_Init
  • Initialized, not trained - model is in this state after SVM_Init, and it is ready to pass it to SVM_Train
  • Trained - model is ready to work in SVM_ClassifySingle.

SvmModel is designed to work with Support Vector Machines filters. If optical character recognition task is considered, one should use OcrSvmModel and Optical Character Recognition filters.

See Also