支持向量机分类
我是 MATLAB 的初学者,正在做数字图像处理的编程项目,即使用小波特征+SVM+PCA+ANN 的磁共振图像分类。我从 MATLAB 工具执行了示例 SVM 分类,并对其进行了修改以满足我的要求。我在输入向量中存储多个特征以及向 SVM 提供新输入时遇到问题。请帮忙。
I am a beginner in MATLAB and doing my Programming project in Digital Image Processing,i.e. Magnetic Resonance image classification using wavelet features+SVM+PCA+ANN. I executed the example SVM classification from MATLAB tool and modified that to fit my requirements. I am facing problems in storing more than one feature in an input vector and in giving new input to SVM. Please help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需将多维特征数据提供给 svmtrain(训练, Group)函数作为Training参数(Training可以是矩阵,每列代表单独的特征)。之后使用 svmclassify(SVMStruct, Sample)< /a> 用于测试数据分类。
Simply feed multidimensional feature data to svmtrain(Training, Group) function as Training parameter (Training can be matrix, each column represents separate feature). After that use svmclassify(SVMStruct, Sample) for testing data classification.