在scikit python中支持矢量机

时间:2016-02-22 09:09:19

标签: python

我如何在scikit中使用支持向量机对我的磁盘上的图像进行python。

我有一个文件夹,其中包含png格式的汽车图片,我想运行SVM,以便将它们分为3类

  1. 汽车
  2. 总线
  3. 摩托车

1 个答案:

答案 0 :(得分:2)

查看scikit-learn网站上的数字分类教程。

http://scikit-learn.org/stable/auto_examples/classification/plot_digits_classification.html

您的案例是对此示例的修改,包含三个类而不是10个

要加载您自己的图片,请参阅此问题

Using sklearn load_files() to load images from png as data