|
|
|
/*M///////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
//
|
|
|
|
//
|
|
|
|
// Intel License Agreement
|
|
|
|
// For Open Source Computer Vision Library
|
|
|
|
//
|
|
|
|
// Copyright (C) 2000, Intel Corporation, 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:
|
|
|
|
//
|
|
|
|
// * Redistribution's of source code must retain the above copyright notice,
|
|
|
|
// this list of conditions and the following disclaimer.
|
|
|
|
//
|
|
|
|
// * Redistribution's 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 Intel Corporation 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
|
|
|
|
// the use of this software, even if advised of the possibility of such damage.
|
|
|
|
//
|
|
|
|
//M*/
|
|
|
|
|
|
|
|
#include "test_precomp.hpp"
|
|
|
|
#include "opencv2/highgui.hpp"
|
|
|
|
|
|
|
|
using namespace cv;
|
|
|
|
using namespace cv::ml;
|
|
|
|
using cv::ml::SVMSGD;
|
|
|
|
using cv::ml::TrainData;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class CV_SVMSGDTrainTest : public cvtest::BaseTest
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
enum TrainDataType
|
|
|
|
{
|
|
|
|
UNIFORM_SAME_SCALE,
|
|
|
|
UNIFORM_DIFFERENT_SCALES
|
|
|
|
};
|
|
|
|
|
|
|
|
CV_SVMSGDTrainTest(Mat _weights, float shift, TrainDataType type, double precision = 0.01);
|
|
|
|
private:
|
|
|
|
virtual void run( int start_from );
|
|
|
|
static float decisionFunction(const Mat &sample, const Mat &weights, float shift);
|
|
|
|
void makeTrainData(Mat weights, float shift);
|
|
|
|
void makeTestData(Mat weights, float shift);
|
|
|
|
void generateSameScaleData(Mat &samples);
|
|
|
|
void generateDifferentScalesData(Mat &samples, float shift);
|
|
|
|
|
|
|
|
TrainDataType type;
|
|
|
|
double precision;
|
|
|
|
cv::Ptr<TrainData> data;
|
|
|
|
cv::Mat testSamples;
|
|
|
|
cv::Mat testResponses;
|
|
|
|
static const int TEST_VALUE_LIMIT = 500;
|
|
|
|
};
|
|
|
|
|
|
|
|
void CV_SVMSGDTrainTest::generateSameScaleData(Mat &samples)
|
|
|
|
{
|
|
|
|
float lowerLimit = -TEST_VALUE_LIMIT;
|
|
|
|
float upperLimit = TEST_VALUE_LIMIT;
|
|
|
|
cv::RNG rng(0);
|
|
|
|
rng.fill(samples, RNG::UNIFORM, lowerLimit, upperLimit);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CV_SVMSGDTrainTest::generateDifferentScalesData(Mat &samples, float shift)
|
|
|
|
{
|
|
|
|
int featureCount = samples.cols;
|
|
|
|
|
|
|
|
float lowerLimit = -TEST_VALUE_LIMIT;
|
|
|
|
float upperLimit = TEST_VALUE_LIMIT;
|
|
|
|
cv::RNG rng(10);
|
|
|
|
|
|
|
|
|
|
|
|
for (int featureIndex = 0; featureIndex < featureCount; featureIndex++)
|
|
|
|
{
|
|
|
|
int crit = rng.uniform(0, 2);
|
|
|
|
|
|
|
|
if (crit > 0)
|
|
|
|
{
|
|
|
|
rng.fill(samples.col(featureIndex), RNG::UNIFORM, lowerLimit - shift, upperLimit - shift);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
rng.fill(samples.col(featureIndex), RNG::UNIFORM, lowerLimit/10, upperLimit/10);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void CV_SVMSGDTrainTest::makeTrainData(Mat weights, float shift)
|
|
|
|
{
|
|
|
|
int datasize = 100000;
|
|
|
|
int featureCount = weights.cols;
|
|
|
|
cv::Mat samples = cv::Mat::zeros(datasize, featureCount, CV_32FC1);
|
|
|
|
cv::Mat responses = cv::Mat::zeros(datasize, 1, CV_32FC1);
|
|
|
|
|
|
|
|
switch(type)
|
|
|
|
{
|
|
|
|
case UNIFORM_SAME_SCALE:
|
|
|
|
generateSameScaleData(samples);
|
|
|
|
break;
|
|
|
|
case UNIFORM_DIFFERENT_SCALES:
|
|
|
|
generateDifferentScalesData(samples, shift);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
CV_Error(CV_StsBadArg, "Unknown train data type");
|
|
|
|
}
|
|
|
|
|
|
|
|
for (int sampleIndex = 0; sampleIndex < datasize; sampleIndex++)
|
|
|
|
{
|
|
|
|
responses.at<float>(sampleIndex) = decisionFunction(samples.row(sampleIndex), weights, shift) > 0 ? 1 : -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
data = TrainData::create(samples, cv::ml::ROW_SAMPLE, responses);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CV_SVMSGDTrainTest::makeTestData(Mat weights, float shift)
|
|
|
|
{
|
|
|
|
int testSamplesCount = 100000;
|
|
|
|
int featureCount = weights.cols;
|
|
|
|
|
|
|
|
float lowerLimit = -TEST_VALUE_LIMIT;
|
|
|
|
float upperLimit = TEST_VALUE_LIMIT;
|
|
|
|
|
|
|
|
cv::RNG rng(0);
|
|
|
|
|
|
|
|
testSamples.create(testSamplesCount, featureCount, CV_32FC1);
|
|
|
|
rng.fill(testSamples, RNG::UNIFORM, lowerLimit, upperLimit);
|
|
|
|
testResponses.create(testSamplesCount, 1, CV_32FC1);
|
|
|
|
|
|
|
|
for (int i = 0 ; i < testSamplesCount; i++)
|
|
|
|
{
|
|
|
|
testResponses.at<float>(i) = decisionFunction(testSamples.row(i), weights, shift) > 0 ? 1 : -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
CV_SVMSGDTrainTest::CV_SVMSGDTrainTest(Mat weights, float shift, TrainDataType _type, double _precision)
|
|
|
|
{
|
|
|
|
type = _type;
|
|
|
|
precision = _precision;
|
|
|
|
makeTrainData(weights, shift);
|
|
|
|
makeTestData(weights, shift);
|
|
|
|
}
|
|
|
|
|
|
|
|
float CV_SVMSGDTrainTest::decisionFunction(const Mat &sample, const Mat &weights, float shift)
|
|
|
|
{
|
|
|
|
return sample.dot(weights) + shift;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CV_SVMSGDTrainTest::run( int /*start_from*/ )
|
|
|
|
{
|
|
|
|
cv::Ptr<SVMSGD> svmsgd = SVMSGD::create();
|
|
|
|
|
|
|
|
svmsgd->setOptimalParameters();
|
|
|
|
|
|
|
|
svmsgd->train(data);
|
|
|
|
|
|
|
|
Mat responses;
|
|
|
|
|
|
|
|
svmsgd->predict(testSamples, responses);
|
|
|
|
|
|
|
|
int errCount = 0;
|
|
|
|
int testSamplesCount = testSamples.rows;
|
|
|
|
|
|
|
|
for (int i = 0; i < testSamplesCount; i++)
|
|
|
|
{
|
|
|
|
if (responses.at<float>(i) * testResponses.at<float>(i) < 0)
|
|
|
|
errCount++;
|
|
|
|
}
|
|
|
|
|
|
|
|
float err = (float)errCount / testSamplesCount;
|
|
|
|
std::cout << "err " << err << std::endl;
|
|
|
|
|
|
|
|
if ( err > precision )
|
|
|
|
{
|
|
|
|
ts->set_failed_test_info(cvtest::TS::FAIL_BAD_ACCURACY);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void makeWeightsAndShift(int featureCount, Mat &weights, float &shift)
|
|
|
|
{
|
|
|
|
weights.create(1, featureCount, CV_32FC1);
|
|
|
|
cv::RNG rng(0);
|
|
|
|
double lowerLimit = -1;
|
|
|
|
double upperLimit = 1;
|
|
|
|
|
|
|
|
rng.fill(weights, RNG::UNIFORM, lowerLimit, upperLimit);
|
|
|
|
shift = rng.uniform(-featureCount, featureCount);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
TEST(ML_SVMSGD, trainSameScale2)
|
|
|
|
{
|
|
|
|
int featureCount = 2;
|
|
|
|
|
|
|
|
Mat weights;
|
|
|
|
|
|
|
|
float shift = 0;
|
|
|
|
makeWeightsAndShift(featureCount, weights, shift);
|
|
|
|
|
|
|
|
CV_SVMSGDTrainTest test(weights, shift, CV_SVMSGDTrainTest::UNIFORM_SAME_SCALE);
|
|
|
|
test.safe_run();
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST(ML_SVMSGD, trainSameScale5)
|
|
|
|
{
|
|
|
|
int featureCount = 5;
|
|
|
|
|
|
|
|
Mat weights;
|
|
|
|
|
|
|
|
float shift = 0;
|
|
|
|
makeWeightsAndShift(featureCount, weights, shift);
|
|
|
|
|
|
|
|
CV_SVMSGDTrainTest test(weights, shift, CV_SVMSGDTrainTest::UNIFORM_SAME_SCALE);
|
|
|
|
test.safe_run();
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST(ML_SVMSGD, trainSameScale100)
|
|
|
|
{
|
|
|
|
int featureCount = 100;
|
|
|
|
|
|
|
|
Mat weights;
|
|
|
|
|
|
|
|
float shift = 0;
|
|
|
|
makeWeightsAndShift(featureCount, weights, shift);
|
|
|
|
|
|
|
|
CV_SVMSGDTrainTest test(weights, shift, CV_SVMSGDTrainTest::UNIFORM_SAME_SCALE);
|
|
|
|
test.safe_run();
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST(ML_SVMSGD, trainDifferentScales2)
|
|
|
|
{
|
|
|
|
int featureCount = 2;
|
|
|
|
|
|
|
|
Mat weights;
|
|
|
|
|
|
|
|
float shift = 0;
|
|
|
|
makeWeightsAndShift(featureCount, weights, shift);
|
|
|
|
|
|
|
|
CV_SVMSGDTrainTest test(weights, shift, CV_SVMSGDTrainTest::UNIFORM_DIFFERENT_SCALES, 0.01);
|
|
|
|
test.safe_run();
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST(ML_SVMSGD, trainDifferentScales5)
|
|
|
|
{
|
|
|
|
int featureCount = 5;
|
|
|
|
|
|
|
|
Mat weights;
|
|
|
|
|
|
|
|
float shift = 0;
|
|
|
|
makeWeightsAndShift(featureCount, weights, shift);
|
|
|
|
|
|
|
|
CV_SVMSGDTrainTest test(weights, shift, CV_SVMSGDTrainTest::UNIFORM_DIFFERENT_SCALES, 0.05);
|
|
|
|
test.safe_run();
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST(ML_SVMSGD, trainDifferentScales100)
|
|
|
|
{
|
|
|
|
int featureCount = 100;
|
|
|
|
|
|
|
|
Mat weights;
|
|
|
|
|
|
|
|
float shift = 0;
|
|
|
|
makeWeightsAndShift(featureCount, weights, shift);
|
|
|
|
|
|
|
|
CV_SVMSGDTrainTest test(weights, shift, CV_SVMSGDTrainTest::UNIFORM_DIFFERENT_SCALES, 0.10);
|
|
|
|
test.safe_run();
|
|
|
|
}
|