How can I use the Support Vector Machine (SVM) for making classification of trajectories of many objects
古いコメントを表示
Dear Sir,
I want to make trajectories' classification of many objects by using SVM classifier. I am still new in using SVM classifier. I made check on the internet and I find simple example by using SVM classifier "http://www.mathworks.it/it/help/stats/support-vector-machines-svm.html" but I don't understand in the end if example how the SVM make classification. I would like to know "Can you please support me with some example (links) about SVM applications (clear applications) to guide me after that to make classifications to many different trajectories??
Thank you very much
Mohamed Elwakdy
回答 (1 件)
Shashank Prasanna
2013 年 10 月 9 日
The link you provided has two full examples of classification using SVM. Did you try running those? Do you have specific questions after you ran the examples?
It is really as simple as:
% Step 1: Training
SVMStruct = svmtrain(Training,Group)
% Step 2: Classification
newGroup = svmclassify(SVMStruct,newSample)
newGroup has the classified information for the new data newSample.
Try out the examples in the documentation and then try different problems from datasets here:
4 件のコメント
Mohamed Elwakdy
2013 年 10 月 9 日
Shashank Prasanna
2013 年 10 月 9 日
編集済み: Shashank Prasanna
2013 年 10 月 9 日
I was recommending you use the approach in the MATLAB documentation on the datasets from the link I provided. Along the way if you have trouble, someone in the community will be able to help you out. Unfortunately I am not aware of another website that keeps MATLAB SVM examples but a web search may reveal something.
Mohamed Elwakdy
2013 年 10 月 14 日
Shashank Prasanna
2013 年 10 月 14 日
Unfortunately I am not aware of another website for your examples. If you can post your code and data we can take a look at it.
カテゴリ
ヘルプ センター および File Exchange で Classification Ensembles についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!