logistic_regression.cpp 6.55 KB
Newer Older
1
/*//////////////////////////////////////////////////////////////////////////////////////
2 3 4 5 6 7
// IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING.

//  By downloading, copying, installing or using the software you agree to this license.
//  If you do not agree to this license, do not download, install,
//  copy or use the software.

8
// This is a implementation of the Logistic Regression algorithm in C++ in OpenCV.
9 10 11 12 13

// AUTHOR:
// Rahul Kavi rahulkavi[at]live[at]com
//

14 15
// contains a subset of data from the popular Iris Dataset (taken from
// "http://archive.ics.uci.edu/ml/datasets/Iris")
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56

// # You are free to use, change, or redistribute the code in any way you wish for
// # non-commercial purposes, but please maintain the name of the original author.
// # This code comes with no warranty of any kind.

// #
// # You are free to use, change, or redistribute the code in any way you wish for
// # non-commercial purposes, but please maintain the name of the original author.
// # This code comes with no warranty of any kind.

// # Logistic Regression ALGORITHM

//                           License Agreement
//                For Open Source Computer Vision Library

// Copyright (C) 2000-2008, Intel Corporation, all rights reserved.
// Copyright (C) 2008-2011, Willow Garage Inc., all rights reserved.
// Third party copyrights are property of their respective owners.

// Redistribution and use in source and binary forms, with or without modification,
// are permitted provided that the following conditions are met:

//   * Redistributions of source code must retain the above copyright notice,
//     this list of conditions and the following disclaimer.

//   * Redistributions in binary form must reproduce the above copyright notice,
//     this list of conditions and the following disclaimer in the documentation
//     and/or other materials provided with the distribution.

//   * The name of the copyright holders may not be used to endorse or promote products
//     derived from this software without specific prior written permission.

// This software is provided by the copyright holders and contributors "as is" and
// any express or implied warranties, including, but not limited to, the implied
// warranties of merchantability and fitness for a particular purpose are disclaimed.
// In no event shall the Intel Corporation or contributors be liable for any direct,
// indirect, incidental, special, exemplary, or consequential damages
// (including, but not limited to, procurement of substitute goods or services;
// loss of use, data, or profits; or business interruption) however caused
// and on any theory of liability, whether in contract, strict liability,
// or tort (including negligence or otherwise) arising in any way out of
57
// the use of this software, even if advised of the possibility of such damage.*/
58

59 60
#include <iostream>

61 62 63
#include <opencv2/core.hpp>
#include <opencv2/ml.hpp>
#include <opencv2/highgui.hpp>
64

65 66
using namespace std;
using namespace cv;
67
using namespace cv::ml;
68

69 70 71 72 73 74 75 76 77 78 79 80
static void showImage(const Mat &data, int columns, const String &name)
{
    Mat bigImage;
    for(int i = 0; i < data.rows; ++i)
    {
        bigImage.push_back(data.row(i).reshape(0, columns));
    }
    imshow(name, bigImage.t());
}

static float calculateAccuracyPercent(const Mat &original, const Mat &predicted)
{
81
    return 100 * (float)countNonZero(original == predicted) / predicted.rows;
82 83
}

84 85
int main()
{
Dmitriy Anisimov's avatar
Dmitriy Anisimov committed
86
    const String filename = "../data/data01.xml";
87 88 89 90 91 92 93
    cout << "**********************************************************************" << endl;
    cout << filename
         << " contains digits 0 and 1 of 20 samples each, collected on an Android device" << endl;
    cout << "Each of the collected images are of size 28 x 28 re-arranged to 1 x 784 matrix"
         << endl;
    cout << "**********************************************************************" << endl;

94
    Mat data, labels;
95
    {
96
        cout << "loading the dataset...";
97 98 99 100 101 102 103 104 105
        FileStorage f;
        if(f.open(filename, FileStorage::READ))
        {
            f["datamat"] >> data;
            f["labelsmat"] >> labels;
            f.release();
        }
        else
        {
106
            cerr << "file can not be opened: " << filename << endl;
107 108 109 110 111 112
            return 1;
        }
        data.convertTo(data, CV_32F);
        labels.convertTo(labels, CV_32F);
        cout << "read " << data.rows << " rows of data" << endl;
    }
113

114 115
    Mat data_train, data_test;
    Mat labels_train, labels_test;
116
    for(int i = 0; i < data.rows; i++)
117
    {
118
        if(i % 2 == 0)
119 120 121 122 123 124 125 126 127 128
        {
            data_train.push_back(data.row(i));
            labels_train.push_back(labels.row(i));
        }
        else
        {
            data_test.push_back(data.row(i));
            labels_test.push_back(labels.row(i));
        }
    }
129
    cout << "training/testing samples count: " << data_train.rows << "/" << data_test.rows << endl;
130

131
    // display sample image
132 133 134 135
    showImage(data_train, 28, "train data");
    showImage(data_test, 28, "test data");

    // simple case with batch gradient
136
    cout << "training...";
137 138 139 140 141 142 143 144
    //! [init]
    Ptr<LogisticRegression> lr1 = LogisticRegression::create();
    lr1->setLearningRate(0.001);
    lr1->setIterations(10);
    lr1->setRegularization(LogisticRegression::REG_L2);
    lr1->setTrainMethod(LogisticRegression::BATCH);
    lr1->setMiniBatchSize(1);
    //! [init]
145 146 147 148
    lr1->train(data_train, ROW_SAMPLE, labels_train);
    cout << "done!" << endl;

    cout << "predicting...";
149
    Mat responses;
150 151 152 153 154
    lr1->predict(data_test, responses);
    cout << "done!" << endl;

    // show prediction report
    cout << "original vs predicted:" << endl;
155
    labels_test.convertTo(labels_test, CV_32S);
156 157
    cout << labels_test.t() << endl;
    cout << responses.t() << endl;
158
    cout << "accuracy: " << calculateAccuracyPercent(labels_test, responses) << "%" << endl;
159 160

    // save the classfier
161
    const String saveFilename = "NewLR_Trained.xml";
162
    cout << "saving the classifier to " << saveFilename << endl;
163
    lr1->save(saveFilename);
164 165

    // load the classifier onto new object
166
    cout << "loading a new classifier from " << saveFilename << endl;
167
    Ptr<LogisticRegression> lr2 = StatModel::load<LogisticRegression>(saveFilename);
168 169

    // predict using loaded classifier
170
    cout << "predicting the dataset using the loaded classfier...";
171 172
    Mat responses2;
    lr2->predict(data_test, responses2);
173 174
    cout << "done!" << endl;

175
    // calculate accuracy
176 177 178
    cout << labels_test.t() << endl;
    cout << responses2.t() << endl;
    cout << "accuracy: " << calculateAccuracyPercent(labels_test, responses2) << "%" << endl;
179

180
    waitKey(0);
181 182
    return 0;
}