Can please someone tell me how to use multiclass svm image datatset in matlab?

1 visualización (últimos 30 días)
Can please someone tell me how to use multiclass svm image datatset in matlab? how to get started ,the flow and outline of the code as i am a beginner.thank you

Respuesta aceptada

Walter Roberson
Walter Roberson el 20 de Abr. de 2014
  13 comentarios
Sheema Khattak
Sheema Khattak el 22 de Abr. de 2014
Yes I am doing texture analysis using svm. I guess segmentation would be needed to separate background,diseased and no disease?I need more guidance regarding coding specialy how to construct matrix of these image regions?
Walter Roberson
Walter Roberson el 29 de Abr. de 2014
No, the way you described it before, you would have an image that had no skin in it anywhere at all and so should be considered background, or you have an image that has skin disease in it somewhere and so should be classed as diseased, or the image has skin in it somewhere but none of the skin is diseased. You do not separate background, disease and no disease by segmentation, as that would imply that you are looking to break the image up into pieces and classify each of the pieces. Any one feature extraction or any one texture analysis is feed the entire image to work with. The internals of the analysis might choose to ignore most of the image, but that should be transparent to the rest of your processing. All the rest of your program needs to know is that it applied algorithm #17 to the entire image and got back this list of 38 double precision numbers in response.

Iniciar sesión para comentar.

Más respuestas (1)

Sheema Khattak
Sheema Khattak el 21 de Abr. de 2014
Editada: Walter Roberson el 21 de Abr. de 2014
Thank you. Can you please tell me what does the following code shows like what is meant by [1 10;.....] etc
TrainingSet=[ 1 10;2 20;3 30;4 40;5 50;6 66;3 30;4.1 42];
TestSet=[3 34; 1 14; 2.2 25; 6.2 63];
GroupTrain=[1;1;2;2;3;3;2;2];
And how can multiclass svm be applied on image dataset?

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by