load fisheriris
xdata = meas(51:end,3:4);
group = species(51:end);
svmStruct = svmtrain(xdata,group,'showplot',true);
species = svmclassify(svmStruct,[5 2],'showplot',true)
hold on;plot(5,2,'ro','MarkerSize',12);hold off
上面的代码给出了结果---> species = 'virginica'
该物种被归类为“处女”。这只是一张图片。这个分类过程可以称为“图像检索”吗???
还是我们必须检索许多图像才能将其称为图像检索?