test_labeling.cpp 6.36 KB
Newer Older
wester committed
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
/*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.
//
//
//                           License Agreement
//                For Open Source Computer Vision Library
//
// Copyright (C) 2000-2008, Intel Corporation, all rights reserved.
// Copyright (C) 2009, 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:
//
//   * 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 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
// the use of this software, even if advised of the possibility of such damage.
//
//M*/

#include "test_precomp.hpp"

#ifdef HAVE_CUDA

namespace
{
    struct GreedyLabeling
    {
        struct dot
        {
            int x;
            int y;

            static dot make(int i, int j)
            {
                dot d; d.x = i; d.y = j;
                return d;
            }
        };

        struct InInterval
        {
wester committed
65
            InInterval(const int& _lo, const int& _hi) : lo(-_lo), hi(_hi) {};
wester committed
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 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 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
            const int lo, hi;

            bool operator() (const unsigned char a, const unsigned char b) const
            {
                int d = a - b;
                return lo <= d && d <= hi;
            }
        };

        GreedyLabeling(cv::Mat img)
        : image(img), _labels(image.size(), CV_32SC1, cv::Scalar::all(-1)) {}

        void operator() (cv::Mat labels) const
        {
            InInterval inInt(0, 2);
            dot* stack = new dot[image.cols * image.rows];

            int cc = -1;

            int* dist_labels = (int*)labels.data;
            int pitch = (int) labels.step1();

            unsigned char* source = (unsigned char*)image.data;
            int width = image.cols;
            int height = image.rows;
            int step1 = (int)image.step1();

            for (int j = 0; j < image.rows; ++j)
                for (int i = 0; i < image.cols; ++i)
                {
                    if (dist_labels[j * pitch + i] != -1) continue;

                    dot* top = stack;
                    dot p = dot::make(i, j);
                    cc++;

                    dist_labels[j * pitch + i] = cc;

                    while (top >= stack)
                    {
                        int*  dl = &dist_labels[p.y * pitch + p.x];
                        unsigned char* sp = &source[p.y * step1 + p.x];

                        dl[0] = cc;

                        //right
                        if( p.x < (width - 1) && dl[ +1] == -1 && inInt(sp[0], sp[+1]))
                            *top++ = dot::make(p.x + 1, p.y);

                        //left
                        if( p.x > 0 && dl[-1] == -1 && inInt(sp[0], sp[-1]))
                            *top++ = dot::make(p.x - 1, p.y);

                        //bottom
                        if( p.y < (height - 1) && dl[+pitch] == -1 && inInt(sp[0], sp[+step1]))
                            *top++ = dot::make(p.x, p.y + 1);

                        //top
                        if( p.y > 0 && dl[-pitch] == -1 && inInt(sp[0], sp[-step1]))
                            *top++ = dot::make(p.x, p.y - 1);

                        p = *--top;
                    }
                }
            delete[] stack;
        }

        void checkCorrectness(cv::Mat gpu)
        {
            cv::Mat diff = gpu - _labels;

            int outliers = 0;
            for (int j = 0; j < image.rows; ++j)
                for (int i = 0; i < image.cols - 1; ++i)
                {
                    if ( (_labels.at<int>(j,i) == gpu.at<int>(j,i + 1)) && (diff.at<int>(j, i) != diff.at<int>(j,i + 1)))
                    {
                        outliers++;
                    }
                }
            ASSERT_TRUE(outliers < gpu.cols + gpu.rows);
        }

        cv::Mat image;
        cv::Mat _labels;
    };
}

wester committed
154
struct Labeling : testing::TestWithParam<cv::gpu::DeviceInfo>
wester committed
155
{
wester committed
156
    cv::gpu::DeviceInfo devInfo;
wester committed
157 158 159 160

    virtual void SetUp()
    {
        devInfo = GetParam();
wester committed
161
        cv::gpu::setDevice(devInfo.deviceID());
wester committed
162 163 164 165 166 167 168 169
    }

    cv::Mat loat_image()
    {
        return cv::imread(std::string( cvtest::TS::ptr()->get_data_path() ) + "labeling/label.png");
    }
};

wester committed
170
GPU_TEST_P(Labeling, DISABLED_ConnectedComponents)
wester committed
171 172
{
    cv::Mat image;
wester committed
173
    cvtColor(loat_image(), image, CV_BGR2GRAY);
wester committed
174

wester committed
175
    cv::threshold(image, image, 150, 255, CV_THRESH_BINARY);
wester committed
176 177 178 179 180 181

    ASSERT_TRUE(image.type() == CV_8UC1);

    GreedyLabeling host(image);
    host(host._labels);

wester committed
182
    cv::gpu::GpuMat mask;
wester committed
183 184
    mask.create(image.rows, image.cols, CV_8UC1);

wester committed
185
    cv::gpu::GpuMat components;
wester committed
186 187
    components.create(image.rows, image.cols, CV_32SC1);

wester committed
188
    cv::gpu::connectivityMask(cv::gpu::GpuMat(image), mask, cv::Scalar::all(0), cv::Scalar::all(2));
wester committed
189

wester committed
190
    cv::gpu::labelComponents(mask, components);
wester committed
191 192 193 194

    host.checkCorrectness(cv::Mat(components));
}

wester committed
195
INSTANTIATE_TEST_CASE_P(GPU_ConnectedComponents, Labeling, ALL_DEVICES);
wester committed
196 197

#endif // HAVE_CUDA