简体   繁体   English

在opencv中为图像训练svm

[英]Training svm for images in opencv

I have already reffered to the following links: Link 1 and Link 2 我已经引用了以下链接: 链接1链接2

From the above i have to managed to write the following : 从上面我必须设法编写以下内容:

#include <opencv2/core/core.hpp>
#include <opencv2/highgui/highgui.hpp>
#include <opencv2/ml/ml.hpp>

using namespace cv;
using namespace std;

int main(){
    int num_files = 2;
    int width = 128, height = 128;

    Mat image[2];
    image[0] = imread("Tomato.jpg");
    image[1] = imread("Melon.jpg");

    Mat new_image(2,height*width,CV_32FC1); //Training sample from input images

    int ii = 0;
    for (int i = 0; i < num_files; i++){
        Mat temp = image[i];
        ii = 0;
        for (int j = 0; j < temp.rows; j++){
            for (int k = 0; k < temp.cols; k++){
                new_image.at<float>(i, ii++) = temp.at<uchar>(j, k);
            }
        }
    }
    //new_image.push_back(image[0].reshape(0, 1));
    //new_image.push_back(image[1].reshape(0, 1));
    Mat labels(num_files, 1, CV_32FC1);
    labels.at<float>(0, 0) = 1.0;//tomato
    labels.at<float>(1, 0) = -1.0;//melon

    imshow("New image", new_image);
    printf("%f %f", labels.at<float>(0, 0), labels.at<float>(1, 0));

    CvSVMParams params;
    params.svm_type = CvSVM::C_SVC;
    params.kernel_type = CvSVM::LINEAR;
    params.gamma = 3;
    params.degree = 3;
    params.term_crit = cvTermCriteria(CV_TERMCRIT_ITER, 100, 1e-6);
    CvSVM svm;
    svm.train(new_image, labels, Mat(), Mat(), params);

    svm.save("svm.xml"); // saving
    svm.load("svm.xml"); // loading

    Mat test_img = imread("Tomato.jpg");
    test_img=test_img.reshape(0, 1);
    imshow("shit_image", test_img);
    test_img.convertTo(test_img, CV_32FC1);
    svm.predict(test_img);

    waitKey(0);
}

I get the following error: 我收到以下错误:

unsupported format or combination of formats, input sample must have 32FC1 type in cvPreparePredictData ... 不支持的格式或格式组合,输入样本在cvPreparePredictData中必须具有32FC1类型...

I followed all steps in the second link. 我遵循了第二个链接中的所有步骤。 All matrices are 32FC1 type. 所有矩阵均为32FC1类型。 What am I missing? 我想念什么? Is there something wrong with the svm parameters ? svm参数有问题吗? The error is caused when i try to predict a result. 当我尝试预测结果时会导致错误。

check 校验

1) Tomato.jpg and Melon.jpg size is 128*128 ? 1)Tomato.jpg和Melon.jpg尺寸是128 * 128吗?
2) both images are grayscale? 2)两个图像都是灰度的?

if not. 如果不。 try this code: 试试这个代码:
I just add resize(), cvtColor() and print result 我只添加resize(),cvtColor()并打印结果

 #include <opencv2/core/core.hpp> #include <opencv2/highgui/highgui.hpp> #include <opencv2/ml/ml.hpp> #include <opencv2\\imgproc\\imgproc.hpp> using namespace cv; using namespace std; int main(){ int num_files = 2; int width = 128, height = 128; Mat image[2]; image[0] = imread("Tomato.jpg", 0); image[1] = imread("Melon.jpg", 0); resize(image[0], image[0], Size(width, height)); resize(image[1], image[1], Size(width, height)); Mat new_image(2, height*width, CV_32FC1); //Training sample from input images int ii = 0; for (int i = 0; i < num_files; i++){ Mat temp = image[i]; ii = 0; for (int j = 0; j < temp.rows; j++){ for (int k = 0; k < temp.cols; k++){ new_image.at<float>(i, ii++) = temp.at<uchar>(j, k); } } } //new_image.push_back(image[0].reshape(0, 1)); //new_image.push_back(image[1].reshape(0, 1)); Mat labels(num_files, 1, CV_32FC1); labels.at<float>(0, 0) = 1.0;//tomato labels.at<float>(1, 0) = -1.0;//melon imshow("New image", new_image); printf("%f %f", labels.at<float>(0, 0), labels.at<float>(1, 0)); CvSVMParams params; params.svm_type = CvSVM::C_SVC; params.kernel_type = CvSVM::LINEAR; params.gamma = 3; params.degree = 3; params.term_crit = cvTermCriteria(CV_TERMCRIT_ITER, 100, 1e-6); CvSVM svm; svm.train(new_image, labels, Mat(), Mat(), params); svm.save("svm.xml"); // saving svm.load("svm.xml"); // loading Mat test_img = imread("Tomato.jpg", 0); resize(test_img, test_img, Size(width, height)); test_img = test_img.reshape(0, 1); imshow("shit_image", test_img); test_img.convertTo(test_img, CV_32FC1); float res = svm.predict(test_img); if (res > 0) cout << endl << "Tomato"; else cout << endl << "Melon"; waitKey(0); } 

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM