test_hog.cpp 12.2 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 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 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
/*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 <fstream>

using namespace std;

//#define DUMP

#define CHECK(pred, err) if (!(pred)) { \
    ts->printf(cvtest::TS::CONSOLE, "Fail: \"%s\" at line: %d\n", #pred, __LINE__); \
    ts->set_failed_test_info(err); \
    return; }

struct CV_GpuHogDetectTestRunner: cv::gpu::HOGDescriptor
{
    CV_GpuHogDetectTestRunner(cvtest::TS* ts_): ts(ts_) {}

    void run(int) 
    {       
        cv::Mat img_rgb = cv::imread(std::string(ts->get_data_path()) + "hog/road.png");
        CHECK(!img_rgb.empty(), cvtest::TS::FAIL_MISSING_TEST_DATA);

#ifdef DUMP
        f.open((std::string(ts->get_data_path()) + "hog/expected_output.bin").c_str(), std::ios_base::binary);
        CHECK(f.is_open(), cvtest::TS::FAIL_GENERIC);
#else
        f.open((std::string(ts->get_data_path()) + "hog/expected_output.bin").c_str(), std::ios_base::binary);
        CHECK(f.is_open(), cvtest::TS::FAIL_MISSING_TEST_DATA);
#endif

        // Test on color image
        cv::Mat img;
        cv::cvtColor(img_rgb, img, CV_BGR2BGRA);
        test(img);

        // Test on gray image
        cv::cvtColor(img_rgb, img, CV_BGR2GRAY);
        test(img);

        f.close();

    }

#ifdef DUMP
    void dump(const cv::Mat& block_hists, const std::vector<cv::Point>& locations) 
    {
        f.write((char*)&block_hists.rows, sizeof(block_hists.rows));
        f.write((char*)&block_hists.cols, sizeof(block_hists.cols));
        for (int i = 0; i < block_hists.rows; ++i)
        {
            for (int j = 0; j < block_hists.cols; ++j)
            {
                float val = block_hists.at<float>(i, j);
                f.write((char*)&val, sizeof(val));
            }
        }
97
        int nlocations = locations.size();
98
        f.write((char*)&nlocations, sizeof(nlocations));
99
        for (int i = 0; i < locations.size(); ++i)
100 101 102 103 104 105
            f.write((char*)&locations[i], sizeof(locations[i]));
    }
#else
    void compare(const cv::Mat& block_hists, const std::vector<cv::Point>& locations) 
    {
        int rows, cols;
106
        int nlocations;
107 108 109 110 111 112 113 114 115 116 117 118 119 120 121

        f.read((char*)&rows, sizeof(rows));
        f.read((char*)&cols, sizeof(cols));
        CHECK(rows == block_hists.rows, cvtest::TS::FAIL_INVALID_OUTPUT);
        CHECK(cols == block_hists.cols, cvtest::TS::FAIL_INVALID_OUTPUT);
        for (int i = 0; i < block_hists.rows; ++i)
        {
            for (int j = 0; j < block_hists.cols; ++j)
            {
                float val;
                f.read((char*)&val, sizeof(val));
                CHECK(fabs(val - block_hists.at<float>(i, j)) < 1e-3f, cvtest::TS::FAIL_INVALID_OUTPUT);
            }
        }
        f.read((char*)&nlocations, sizeof(nlocations));
122 123
        CHECK(nlocations == static_cast<int>(locations.size()), cvtest::TS::FAIL_INVALID_OUTPUT);
        for (int i = 0; i < nlocations; ++i)
124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251
        {
            cv::Point location;
            f.read((char*)&location, sizeof(location));
            CHECK(location == locations[i], cvtest::TS::FAIL_INVALID_OUTPUT);
        }
    }
#endif

    void test(const cv::Mat& img) 
    {
        cv::gpu::GpuMat d_img(img);

        gamma_correction = false;
        setSVMDetector(cv::gpu::HOGDescriptor::getDefaultPeopleDetector());
        //cpu detector may be updated soon
        //hog.setSVMDetector(cv::HOGDescriptor::getDefaultPeopleDetector());

        std::vector<cv::Point> locations;

        // Test detect
        detect(d_img, locations, 0);

#ifdef DUMP
        dump(block_hists, locations);
#else
        compare(block_hists, locations);
#endif

        // Test detect on smaller image
        cv::Mat img2;
        cv::resize(img, img2, cv::Size(img.cols / 2, img.rows / 2)); 
        detect(cv::gpu::GpuMat(img2), locations, 0);

#ifdef DUMP
        dump(block_hists, locations);
#else
        compare(block_hists, locations);
#endif

        // Test detect on greater image
        cv::resize(img, img2, cv::Size(img.cols * 2, img.rows * 2)); 
        detect(cv::gpu::GpuMat(img2), locations, 0);
        
#ifdef DUMP
        dump(block_hists, locations);
#else
        compare(block_hists, locations);
#endif
    }

#ifdef DUMP
    std::ofstream f;
#else
    std::ifstream f;
#endif

    cvtest::TS* ts;
};


struct CV_GpuHogDetectTest: cvtest::BaseTest 
{
    CV_GpuHogDetectTest() {}

    void run(int i)
    {
        CV_GpuHogDetectTestRunner runner(ts);
        runner.run(i);
    }
};

TEST(HOG, detect_accuracy) { CV_GpuHogDetectTest test; test.safe_run(); }

struct CV_GpuHogGetDescriptorsTestRunner: cv::gpu::HOGDescriptor
{
    CV_GpuHogGetDescriptorsTestRunner(cvtest::TS* ts_): HOGDescriptor(cv::Size(64, 128)), ts(ts_) {}

    void run(int)
    {
        // Load image (e.g. train data, composed from windows)
        cv::Mat img_rgb = cv::imread(std::string(ts->get_data_path()) + "hog/train_data.png");
        CHECK(!img_rgb.empty(), cvtest::TS::FAIL_MISSING_TEST_DATA);

        // Convert to C4
        cv::Mat img;
        cv::cvtColor(img_rgb, img, CV_BGR2BGRA);
        cv::gpu::GpuMat d_img(img);


        // Convert train images into feature vectors (train table)
        cv::gpu::GpuMat descriptors, descriptors_by_cols;
        getDescriptors(d_img, win_size, descriptors, DESCR_FORMAT_ROW_BY_ROW);
        getDescriptors(d_img, win_size, descriptors_by_cols, DESCR_FORMAT_COL_BY_COL);

        // Check size of the result train table
        wins_per_img_x = 3;
        wins_per_img_y = 2;
        blocks_per_win_x = 7;
        blocks_per_win_y = 15;
        block_hist_size = 36;
        cv::Size descr_size_expected = cv::Size(blocks_per_win_x * blocks_per_win_y * block_hist_size,
                                                wins_per_img_x * wins_per_img_y);
        CHECK(descriptors.size() == descr_size_expected, cvtest::TS::FAIL_INVALID_OUTPUT);

        // Check both formats of output descriptors are handled correctly
        cv::Mat dr(descriptors);
        cv::Mat dc(descriptors_by_cols);
        for (int i = 0; i < wins_per_img_x * wins_per_img_y; ++i)
        {
            const float* l = dr.rowRange(i, i + 1).ptr<float>();
            const float* r = dc.rowRange(i, i + 1).ptr<float>();
            for (int y = 0; y < blocks_per_win_y; ++y)
                for (int x = 0; x < blocks_per_win_x; ++x)
                    for (int k = 0; k < block_hist_size; ++k)
                        CHECK(l[(y * blocks_per_win_x + x) * block_hist_size + k] ==
                              r[(x * blocks_per_win_y + y) * block_hist_size + k], cvtest::TS::FAIL_INVALID_OUTPUT);
        }

        /* Now we want to extract the same feature vectors, but from single images. NOTE: results will
        be defferent, due to border values interpolation. Using of many small images is slower, however we
        wont't call getDescriptors and will use computeBlockHistograms instead of. computeBlockHistograms
        works good, it can be checked in the gpu_hog sample */

        img_rgb = cv::imread(std::string(ts->get_data_path()) + "hog/positive1.png");
        CHECK(!img_rgb.empty(), cvtest::TS::FAIL_MISSING_TEST_DATA);
        cv::cvtColor(img_rgb, img, CV_BGR2BGRA);
        computeBlockHistograms(cv::gpu::GpuMat(img));
        // Everything is fine with interpolation for left top subimage
252
        CHECK(cv::norm((cv::Mat)block_hists, (cv::Mat)descriptors.rowRange(0, 1)) == 0.f, cvtest::TS::FAIL_INVALID_OUTPUT);
253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319

        img_rgb = cv::imread(std::string(ts->get_data_path()) + "hog/positive2.png");
        CHECK(!img_rgb.empty(), cvtest::TS::FAIL_MISSING_TEST_DATA);
        cv::cvtColor(img_rgb, img, CV_BGR2BGRA);
        computeBlockHistograms(cv::gpu::GpuMat(img));
        compare_inner_parts(block_hists, descriptors.rowRange(1, 2));

        img_rgb = cv::imread(std::string(ts->get_data_path()) + "hog/negative1.png");
        CHECK(!img_rgb.empty(), cvtest::TS::FAIL_MISSING_TEST_DATA);
        cv::cvtColor(img_rgb, img, CV_BGR2BGRA);
        computeBlockHistograms(cv::gpu::GpuMat(img));
        compare_inner_parts(block_hists, descriptors.rowRange(2, 3));

        img_rgb = cv::imread(std::string(ts->get_data_path()) + "hog/negative2.png");
        CHECK(!img_rgb.empty(), cvtest::TS::FAIL_MISSING_TEST_DATA);
        cv::cvtColor(img_rgb, img, CV_BGR2BGRA);
        computeBlockHistograms(cv::gpu::GpuMat(img));
        compare_inner_parts(block_hists, descriptors.rowRange(3, 4));

        img_rgb = cv::imread(std::string(ts->get_data_path()) + "hog/positive3.png");
        CHECK(!img_rgb.empty(), cvtest::TS::FAIL_MISSING_TEST_DATA);
        cv::cvtColor(img_rgb, img, CV_BGR2BGRA);
        computeBlockHistograms(cv::gpu::GpuMat(img));
        compare_inner_parts(block_hists, descriptors.rowRange(4, 5));

        img_rgb = cv::imread(std::string(ts->get_data_path()) + "hog/negative3.png");
        CHECK(!img_rgb.empty(), cvtest::TS::FAIL_MISSING_TEST_DATA);
        cv::cvtColor(img_rgb, img, CV_BGR2BGRA);
        computeBlockHistograms(cv::gpu::GpuMat(img));
        compare_inner_parts(block_hists, descriptors.rowRange(5, 6));
    }

    // Does not compare border value, as interpolation leads to delta
    void compare_inner_parts(cv::Mat d1, cv::Mat d2)
    {
        for (int i = 1; i < blocks_per_win_y - 1; ++i)
            for (int j = 1; j < blocks_per_win_x - 1; ++j)
                for (int k = 0; k < block_hist_size; ++k)
                {
                    float a = d1.at<float>(0, (i * blocks_per_win_x + j) * block_hist_size);
                    float b = d2.at<float>(0, (i * blocks_per_win_x + j) * block_hist_size);
                    CHECK(a == b, cvtest::TS::FAIL_INVALID_OUTPUT)
                }
    }

    int wins_per_img_x;
    int wins_per_img_y;
    int blocks_per_win_x;
    int blocks_per_win_y;
    int block_hist_size;

    cvtest::TS* ts;
};


struct CV_GpuHogGetDescriptorsTest: cvtest::BaseTest 
{
    CV_GpuHogGetDescriptorsTest() {}

    void run(int i)
    {
        CV_GpuHogGetDescriptorsTestRunner runner(ts);
        runner.run(i);
    }
};

TEST(HOG, descriptors_accuracy) { CV_GpuHogGetDescriptorsTest test; test.safe_run(); }