canny.cpp 38.6 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13
/*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.
Ilya Lavrenov's avatar
Ilya Lavrenov committed
14
// Copyright (C) 2014, Itseez Inc., all rights reserved.
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
// 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 "precomp.hpp"
Alexander Alekhin's avatar
Alexander Alekhin committed
44
#include "opencl_kernels_imgproc.hpp"
45
#include "opencv2/core/hal/intrin.hpp"
46
#include <deque>
47

48 49
#include "opencv2/core/openvx/ovx_defs.hpp"

50 51 52 53
#if CV_SIMD128
#define CV_MALLOC_SIMD128 16
#endif

54 55
namespace cv
{
56

57
#ifdef HAVE_IPP
58
static bool ipp_Canny(const Mat& src , const Mat& dx_, const Mat& dy_, Mat& dst, float low,  float high, bool L2gradient, int aperture_size)
59
{
60
#ifdef HAVE_IPP_IW
61 62
    CV_INSTRUMENT_REGION_IPP()

63 64 65 66
#if IPP_DISABLE_PERF_CANNY_MT
    if(cv::getNumThreads()>1)
        return false;
#endif
67

68 69 70 71
    ::ipp::IwiSize size(dst.cols, dst.rows);
    IppDataType    type     = ippiGetDataType(dst.depth());
    int            channels = dst.channels();
    IppNormType    norm     = (L2gradient)?ippNormL2:ippNormL1;
72

73
    if(size.width <= 3 || size.height <= 3)
Ilya Lavrenov's avatar
Ilya Lavrenov committed
74
        return false;
75

76 77
    if(channels != 1)
        return false;
78

79 80
    if(type != ipp8u)
        return false;
81

82
    if(src.empty())
83
    {
84 85 86 87 88
        try
        {
            ::ipp::IwiImage iwSrcDx;
            ::ipp::IwiImage iwSrcDy;
            ::ipp::IwiImage iwDst;
89

90 91 92
            ippiGetImage(dx_, iwSrcDx);
            ippiGetImage(dy_, iwSrcDy);
            ippiGetImage(dst, iwDst);
93

94
            CV_INSTRUMENT_FUN_IPP(::ipp::iwiFilterCannyDeriv, iwSrcDx, iwSrcDy, iwDst, low, high, ::ipp::IwiFilterCannyDerivParams(norm));
95 96 97 98 99
        }
        catch (::ipp::IwException ex)
        {
            return false;
        }
100 101 102
    }
    else
    {
103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119
        IppiMaskSize kernel;

        if(aperture_size == 3)
            kernel = ippMskSize3x3;
        else if(aperture_size == 5)
            kernel = ippMskSize5x5;
        else
            return false;

        try
        {
            ::ipp::IwiImage iwSrc;
            ::ipp::IwiImage iwDst;

            ippiGetImage(src, iwSrc);
            ippiGetImage(dst, iwDst);

120
            CV_INSTRUMENT_FUN_IPP(::ipp::iwiFilterCanny, iwSrc, iwDst, low, high, ::ipp::IwiFilterCannyParams(ippFilterSobel, kernel, norm), ippBorderRepl);
121 122 123 124 125
        }
        catch (::ipp::IwException)
        {
            return false;
        }
126 127
    }

128
    return true;
129
#else
130
    CV_UNUSED(src); CV_UNUSED(dx_); CV_UNUSED(dy_); CV_UNUSED(dst); CV_UNUSED(low); CV_UNUSED(high); CV_UNUSED(L2gradient); CV_UNUSED(aperture_size);
131 132
    return false;
#endif
133 134 135
}
#endif

Ilya Lavrenov's avatar
Ilya Lavrenov committed
136 137
#ifdef HAVE_OPENCL

138 139
template <bool useCustomDeriv>
static bool ocl_Canny(InputArray _src, const UMat& dx_, const UMat& dy_, OutputArray _dst, float low_thresh, float high_thresh,
140 141
                      int aperture_size, bool L2gradient, int cn, const Size & size)
{
142 143
    CV_INSTRUMENT_REGION_OPENCL()

144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160
    UMat map;

    const ocl::Device &dev = ocl::Device::getDefault();
    int max_wg_size = (int)dev.maxWorkGroupSize();

    int lSizeX = 32;
    int lSizeY = max_wg_size / 32;

    if (lSizeY == 0)
    {
        lSizeX = 16;
        lSizeY = max_wg_size / 16;
    }
    if (lSizeY == 0)
    {
        lSizeY = 1;
    }
161 162 163 164 165 166

    if (L2gradient)
    {
        low_thresh = std::min(32767.0f, low_thresh);
        high_thresh = std::min(32767.0f, high_thresh);

167 168 169 170
        if (low_thresh > 0)
            low_thresh *= low_thresh;
        if (high_thresh > 0)
            high_thresh *= high_thresh;
171 172 173
    }
    int low = cvFloor(low_thresh), high = cvFloor(high_thresh);

174 175
    if (!useCustomDeriv &&
        aperture_size == 3 && !_src.isSubmatrix())
176
    {
177 178 179 180 181 182 183 184 185
        /*
            stage1_with_sobel:
                Sobel operator
                Calc magnitudes
                Non maxima suppression
                Double thresholding
        */
        char cvt[40];
        ocl::Kernel with_sobel("stage1_with_sobel", ocl::imgproc::canny_oclsrc,
186
                               format("-D WITH_SOBEL -D cn=%d -D TYPE=%s -D convert_floatN=%s -D floatN=%s -D GRP_SIZEX=%d -D GRP_SIZEY=%d%s",
187
                                      cn, ocl::memopTypeToStr(_src.depth()),
188 189
                                      ocl::convertTypeStr(_src.depth(), CV_32F, cn, cvt),
                                      ocl::typeToStr(CV_MAKE_TYPE(CV_32F, cn)),
190 191 192
                                      lSizeX, lSizeY,
                                      L2gradient ? " -D L2GRAD" : ""));
        if (with_sobel.empty())
193 194
            return false;

195 196 197 198
        UMat src = _src.getUMat();
        map.create(size, CV_32S);
        with_sobel.args(ocl::KernelArg::ReadOnly(src),
                        ocl::KernelArg::WriteOnlyNoSize(map),
199
                        (float) low, (float) high);
200

201 202
        size_t globalsize[2] = { (size_t)size.width, (size_t)size.height },
                localsize[2] = { (size_t)lSizeX, (size_t)lSizeY };
203

204
        if (!with_sobel.run(2, globalsize, localsize, false))
205 206 207 208
            return false;
    }
    else
    {
209 210 211 212 213 214 215
        /*
            stage1_without_sobel:
                Calc magnitudes
                Non maxima suppression
                Double thresholding
        */
        UMat dx, dy;
216 217 218 219 220 221 222 223 224 225
        if (!useCustomDeriv)
        {
            Sobel(_src, dx, CV_16S, 1, 0, aperture_size, 1, 0, BORDER_REPLICATE);
            Sobel(_src, dy, CV_16S, 0, 1, aperture_size, 1, 0, BORDER_REPLICATE);
        }
        else
        {
            dx = dx_;
            dy = dy_;
        }
226

227 228 229 230
        ocl::Kernel without_sobel("stage1_without_sobel", ocl::imgproc::canny_oclsrc,
                                    format("-D WITHOUT_SOBEL -D cn=%d -D GRP_SIZEX=%d -D GRP_SIZEY=%d%s",
                                           cn, lSizeX, lSizeY, L2gradient ? " -D L2GRAD" : ""));
        if (without_sobel.empty())
231 232
            return false;

233 234 235 236 237
        map.create(size, CV_32S);
        without_sobel.args(ocl::KernelArg::ReadOnlyNoSize(dx), ocl::KernelArg::ReadOnlyNoSize(dy),
                           ocl::KernelArg::WriteOnly(map),
                           low, high);

238 239
        size_t globalsize[2] = { (size_t)size.width, (size_t)size.height },
                localsize[2] = { (size_t)lSizeX, (size_t)lSizeY };
240

241
        if (!without_sobel.run(2, globalsize, localsize, false))
242 243 244
            return false;
    }

245 246 247 248 249
    int PIX_PER_WI = 8;
    /*
        stage2:
            hysteresis (add weak edges if they are connected with strong edges)
    */
250

251 252 253 254
    int sizey = lSizeY / PIX_PER_WI;
    if (sizey == 0)
        sizey = 1;

255
    size_t globalsize[2] = { (size_t)size.width, ((size_t)size.height + PIX_PER_WI - 1) / PIX_PER_WI }, localsize[2] = { (size_t)lSizeX, (size_t)sizey };
256

257
    ocl::Kernel edgesHysteresis("stage2_hysteresis", ocl::imgproc::canny_oclsrc,
258 259
                                format("-D STAGE2 -D PIX_PER_WI=%d -D LOCAL_X=%d -D LOCAL_Y=%d",
                                PIX_PER_WI, lSizeX, sizey));
260

261
    if (edgesHysteresis.empty())
262 263
        return false;

264 265 266
    edgesHysteresis.args(ocl::KernelArg::ReadWrite(map));
    if (!edgesHysteresis.run(2, globalsize, localsize, false))
        return false;
267 268

    // get edges
269 270 271

    ocl::Kernel getEdgesKernel("getEdges", ocl::imgproc::canny_oclsrc,
                                format("-D GET_EDGES -D PIX_PER_WI=%d", PIX_PER_WI));
272 273 274
    if (getEdgesKernel.empty())
        return false;

275
    _dst.create(size, CV_8UC1);
276 277
    UMat dst = _dst.getUMat();

278
    getEdgesKernel.args(ocl::KernelArg::ReadOnly(map), ocl::KernelArg::WriteOnlyNoSize(dst));
279

280 281 282
    return getEdgesKernel.run(2, globalsize, NULL, false);
}

Ilya Lavrenov's avatar
Ilya Lavrenov committed
283 284
#endif

285 286 287 288 289 290 291 292 293 294 295 296 297 298 299
#define CANNY_PUSH(map, stack) *map = 2, stack.push_back(map)

#define CANNY_CHECK_SIMD(m, high, map, stack) \
    if (m > high) \
        CANNY_PUSH(map, stack); \
    else \
        *map = 0

#define CANNY_CHECK(m, high, map, stack) \
    if (m > high) \
        CANNY_PUSH(map, stack); \
    else \
        *map = 0; \
    continue

300
class parallelCanny : public ParallelLoopBody
orestis's avatar
orestis committed
301 302
{
public:
303 304 305 306
    parallelCanny(const Mat &_src, Mat &_map, std::deque<uchar*> &borderPeaksParallel,
                  int _low, int _high, int _aperture_size, bool _L2gradient) :
        src(_src), src2(_src), map(_map), _borderPeaksParallel(borderPeaksParallel),
        low(_low), high(_high), aperture_size(_aperture_size), L2gradient(_L2gradient)
307
    {
308 309 310 311 312 313 314 315 316 317 318 319 320
#if CV_SIMD128
        haveSIMD = hasSIMD128();
        if(haveSIMD)
            _map.create(src.rows + 2, (int)alignSize((size_t)(src.cols + CV_MALLOC_SIMD128 + 1), CV_MALLOC_SIMD128), CV_8UC1);
        else
#endif
            _map.create(src.rows + 2, src.cols + 2,  CV_8UC1);
        map = _map;
        map.row(0).setTo(1);
        map.row(src.rows + 1).setTo(1);
        mapstep = map.cols;
        needGradient = true;
        cn = src.channels();
321 322
    }

323 324 325 326
    parallelCanny(const Mat &_dx, const Mat &_dy, Mat &_map, std::deque<uchar*> &borderPeaksParallel,
                  int _low, int _high, bool _L2gradient) :
        src(_dx), src2(_dy), map(_map), _borderPeaksParallel(borderPeaksParallel),
        low(_low), high(_high), aperture_size(0), L2gradient(_L2gradient)
327
    {
328 329 330 331 332 333 334 335 336 337 338 339 340
#if CV_SIMD128
        haveSIMD = hasSIMD128();
        if(haveSIMD)
            _map.create(src.rows + 2, (int)alignSize((size_t)(src.cols + CV_MALLOC_SIMD128 + 1), CV_MALLOC_SIMD128), CV_8UC1);
        else
#endif
            _map.create(src.rows + 2, src.cols + 2,  CV_8UC1);
        map = _map;
        map.row(0).setTo(1);
        map.row(src.rows + 1).setTo(1);
        mapstep = map.cols;
        needGradient = false;
        cn = src.channels();
341 342
    }

343 344
    ~parallelCanny() {}

345 346 347
    parallelCanny& operator=(const parallelCanny&) { return *this; }

    void operator()(const Range &boundaries) const
orestis's avatar
orestis committed
348
    {
349 350
        CV_TRACE_FUNCTION();

orestis's avatar
orestis committed
351
        Mat dx, dy;
352 353 354 355 356 357 358
        AutoBuffer<short> dxMax(0), dyMax(0);
        std::deque<uchar*> stack, borderPeaksLocal;
        const int rowStart = max(0, boundaries.start - 1), rowEnd = min(src.rows, boundaries.end + 1);
        int *_mag_p, *_mag_a, *_mag_n;
        short *_dx, *_dy, *_dx_a = NULL, *_dy_a = NULL, *_dx_n = NULL, *_dy_n = NULL;
        uchar *_pmap;

359
        CV_TRACE_REGION("gradient")
360
        if(needGradient)
orestis's avatar
orestis committed
361
        {
362 363
            Sobel(src.rowRange(rowStart, rowEnd), dx, CV_16S, 1, 0, aperture_size, 1, 0, BORDER_REPLICATE);
            Sobel(src.rowRange(rowStart, rowEnd), dy, CV_16S, 0, 1, aperture_size, 1, 0, BORDER_REPLICATE);
orestis's avatar
orestis committed
364
        }
365
        else
orestis's avatar
orestis committed
366
        {
367 368
            dx = src.rowRange(rowStart, rowEnd);
            dy = src2.rowRange(rowStart, rowEnd);
orestis's avatar
orestis committed
369 370
        }

371
        CV_TRACE_REGION_NEXT("magnitude");
372
        if(cn > 1)
orestis's avatar
orestis committed
373
        {
374 375 376 377 378 379
            dxMax.allocate(2 * dx.cols);
            dyMax.allocate(2 * dy.cols);
            _dx_a = (short*)dxMax;
            _dx_n = _dx_a + dx.cols;
            _dy_a = (short*)dyMax;
            _dy_n = _dy_a + dy.cols;
orestis's avatar
orestis committed
380 381
        }

382 383 384 385 386 387 388 389 390 391 392 393
        // _mag_p: previous row, _mag_a: actual row, _mag_n: next row
#if CV_SIMD128
        AutoBuffer<int> buffer(3 * (mapstep * cn + CV_MALLOC_SIMD128));
        _mag_p = alignPtr((int*)buffer + 1, CV_MALLOC_SIMD128);
        _mag_a = alignPtr(_mag_p + mapstep * cn, CV_MALLOC_SIMD128);
        _mag_n = alignPtr(_mag_a + mapstep * cn, CV_MALLOC_SIMD128);
#else
        AutoBuffer<int> buffer(3 * (mapstep * cn));
        _mag_p = (int*)buffer + 1;
        _mag_a = _mag_p + mapstep * cn;
        _mag_n = _mag_a + mapstep * cn;
#endif
orestis's avatar
orestis committed
394

395 396 397 398 399
        // For the first time when just 2 rows are filled and for left and right borders
        if(rowStart == boundaries.start)
            memset(_mag_n - 1, 0, mapstep * sizeof(int));
        else
            _mag_n[src.cols] = _mag_n[-1] = 0;
orestis's avatar
orestis committed
400

401
        _mag_a[src.cols] = _mag_a[-1] = _mag_p[src.cols] = _mag_p[-1] = 0;
orestis's avatar
orestis committed
402 403 404 405 406 407

        // calculate magnitude and angle of gradient, perform non-maxima suppression.
        // fill the map with one of the following values:
        //   0 - the pixel might belong to an edge
        //   1 - the pixel can not belong to an edge
        //   2 - the pixel does belong to an edge
408
        for (int i = rowStart; i <= boundaries.end; ++i)
orestis's avatar
orestis committed
409
        {
410 411 412
            // Scroll the ring buffer
            std::swap(_mag_n, _mag_a);
            std::swap(_mag_n, _mag_p);
orestis's avatar
orestis committed
413

414
            if(i < rowEnd)
orestis's avatar
orestis committed
415
            {
416 417 418 419 420 421 422
                // Next row calculation
                _dx = dx.ptr<short>(i - rowStart);
                _dy = dy.ptr<short>(i - rowStart);

                if (L2gradient)
                {
                    int j = 0, width = src.cols * cn;
423
#if CV_SIMD128
424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444
                    if (haveSIMD)
                    {
                       for ( ; j <= width - 8; j += 8)
                        {
                            v_int16x8 v_dx = v_load((const short*)(_dx + j));
                            v_int16x8 v_dy = v_load((const short*)(_dy + j));

                            v_int32x4 v_dxp_low, v_dxp_high;
                            v_int32x4 v_dyp_low, v_dyp_high;
                            v_expand(v_dx, v_dxp_low, v_dxp_high);
                            v_expand(v_dy, v_dyp_low, v_dyp_high);

                            v_store_aligned((int *)(_mag_n + j), v_dxp_low*v_dxp_low+v_dyp_low*v_dyp_low);
                            v_store_aligned((int *)(_mag_n + j + 4), v_dxp_high*v_dxp_high+v_dyp_high*v_dyp_high);
                        }
                    }
#endif
                    for ( ; j < width; ++j)
                        _mag_n[j] = int(_dx[j])*_dx[j] + int(_dy[j])*_dy[j];
                }
                else
orestis's avatar
orestis committed
445
                {
446 447 448
                    int j = 0, width = src.cols * cn;
#if CV_SIMD128
                    if (haveSIMD)
orestis's avatar
orestis committed
449
                    {
450 451 452 453
                        for(; j <= width - 8; j += 8)
                        {
                            v_int16x8 v_dx = v_load((const short *)(_dx + j));
                            v_int16x8 v_dy = v_load((const short *)(_dy + j));
orestis's avatar
orestis committed
454

455 456
                            v_dx = v_reinterpret_as_s16(v_abs(v_dx));
                            v_dy = v_reinterpret_as_s16(v_abs(v_dy));
457

458 459 460
                            v_int32x4 v_dx_ml, v_dy_ml, v_dx_mh, v_dy_mh;
                            v_expand(v_dx, v_dx_ml, v_dx_mh);
                            v_expand(v_dy, v_dy_ml, v_dy_mh);
orestis's avatar
orestis committed
461

462 463 464
                            v_store_aligned((int *)(_mag_n + j), v_dx_ml + v_dy_ml);
                            v_store_aligned((int *)(_mag_n + j + 4), v_dx_mh + v_dy_mh);
                        }
orestis's avatar
orestis committed
465 466
                    }
#endif
467 468 469 470 471
                    for ( ; j < width; ++j)
                        _mag_n[j] = std::abs(int(_dx[j])) + std::abs(int(_dy[j]));
                }

                if(cn > 1)
orestis's avatar
orestis committed
472
                {
473 474
                    std::swap(_dx_n, _dx_a);
                    std::swap(_dy_n, _dy_a);
orestis's avatar
orestis committed
475

476 477 478 479 480
                    for(int j = 0, jn = 0; j < src.cols; ++j, jn += cn)
                    {
                        int maxIdx = jn;
                        for(int k = 1; k < cn; ++k)
                            if(_mag_n[jn + k] > _mag_n[maxIdx]) maxIdx = jn + k;
481

482 483 484
                        _mag_n[j] = _mag_n[maxIdx];
                        _dx_n[j] = _dx[maxIdx];
                        _dy_n[j] = _dy[maxIdx];
orestis's avatar
orestis committed
485
                    }
486 487

                    _mag_n[src.cols] = 0;
orestis's avatar
orestis committed
488 489
                }

490 491 492 493 494 495
                // at the very beginning we do not have a complete ring
                // buffer of 3 magnitude rows for non-maxima suppression
                if (i <= boundaries.start)
                    continue;
            }
            else
orestis's avatar
orestis committed
496
            {
497 498 499
                memset(_mag_n - 1, 0, mapstep * sizeof(int));

                if(cn > 1)
orestis's avatar
orestis committed
500
                {
501 502
                    std::swap(_dx_n, _dx_a);
                    std::swap(_dy_n, _dy_a);
orestis's avatar
orestis committed
503 504 505
                }
            }

506 507 508 509 510 511 512 513
            // From here actual src row is (i - 1)
            // Set left and right border to 1
#if CV_SIMD128
            if(haveSIMD)
                _pmap = map.ptr<uchar>(i) + CV_MALLOC_SIMD128;
            else
#endif
                _pmap = map.ptr<uchar>(i) + 1;
orestis's avatar
orestis committed
514

515
            _pmap[src.cols] =_pmap[-1] = 1;
orestis's avatar
orestis committed
516

517
            if(cn == 1)
orestis's avatar
orestis committed
518
            {
519 520 521 522 523 524 525
                _dx = dx.ptr<short>(i - rowStart - 1);
                _dy = dy.ptr<short>(i - rowStart - 1);
            }
            else
            {
                _dx = _dx_a;
                _dy = _dy_a;
orestis's avatar
orestis committed
526 527
            }

528 529
            const int TG22 = 13573;
            int j = 0;
530 531
#if CV_SIMD128
            if (haveSIMD)
mschoeneck's avatar
mschoeneck committed
532
            {
533 534
                const v_int32x4 v_low = v_setall_s32(low);
                const v_int8x16 v_one = v_setall_s8(1);
mschoeneck's avatar
mschoeneck committed
535

536
                for (; j <= src.cols - 32; j += 32)
mschoeneck's avatar
mschoeneck committed
537
                {
538 539 540 541
                    v_int32x4 v_m1 = v_load_aligned((const int*)(_mag_a + j));
                    v_int32x4 v_m2 = v_load_aligned((const int*)(_mag_a + j + 4));
                    v_int32x4 v_m3 = v_load_aligned((const int*)(_mag_a + j + 8));
                    v_int32x4 v_m4 = v_load_aligned((const int*)(_mag_a + j + 12));
mschoeneck's avatar
mschoeneck committed
542

543 544 545 546
                    v_int32x4 v_cmp1 = v_m1 > v_low;
                    v_int32x4 v_cmp2 = v_m2 > v_low;
                    v_int32x4 v_cmp3 = v_m3 > v_low;
                    v_int32x4 v_cmp4 = v_m4 > v_low;
mschoeneck's avatar
mschoeneck committed
547

548 549 550 551 552 553 554 555
                    v_m1 = v_load_aligned((const int*)(_mag_a + j + 16));
                    v_m2 = v_load_aligned((const int*)(_mag_a + j + 20));
                    v_m3 = v_load_aligned((const int*)(_mag_a + j + 24));
                    v_m4 = v_load_aligned((const int*)(_mag_a + j + 28));

                    v_store_aligned((signed char*)(_pmap + j), v_one);
                    v_store_aligned((signed char*)(_pmap + j + 16), v_one);

556 557
                    v_int16x8 v_cmp80 = v_pack(v_cmp1, v_cmp2);
                    v_int16x8 v_cmp81 = v_pack(v_cmp3, v_cmp4);
mschoeneck's avatar
mschoeneck committed
558

559 560 561 562 563
                    v_cmp1 = v_m1 > v_low;
                    v_cmp2 = v_m2 > v_low;
                    v_cmp3 = v_m3 > v_low;
                    v_cmp4 = v_m4 > v_low;

564
                    v_int8x16 v_cmp = v_pack(v_cmp80, v_cmp81);
565 566 567 568

                    v_cmp80 = v_pack(v_cmp1, v_cmp2);
                    v_cmp81 = v_pack(v_cmp3, v_cmp4);

569
                    unsigned int mask = v_signmask(v_cmp);
mschoeneck's avatar
mschoeneck committed
570

571 572 573
                    v_cmp = v_pack(v_cmp80, v_cmp81);
                    mask |= v_signmask(v_cmp) << 16;

mschoeneck's avatar
mschoeneck committed
574 575
                    if (mask)
                    {
576
                        int k = j;
mschoeneck's avatar
mschoeneck committed
577

578
                        do
mschoeneck's avatar
mschoeneck committed
579
                        {
580 581 582 583 584 585 586 587 588
                            int l = trailingZeros32(mask);
                            k += l;
                            mask >>= l;

                            int m = _mag_a[k];
                            short xs = _dx[k];
                            short ys = _dy[k];
                            int x = (int)std::abs(xs);
                            int y = (int)std::abs(ys) << 15;
mschoeneck's avatar
mschoeneck committed
589

590
                            int tg22x = x * TG22;
mschoeneck's avatar
mschoeneck committed
591

592 593 594
                            if (y < tg22x)
                            {
                                if (m > _mag_a[k - 1] && m >= _mag_a[k + 1])
mschoeneck's avatar
mschoeneck committed
595
                                {
596
                                    CANNY_CHECK_SIMD(m, high, (_pmap+k), stack);
mschoeneck's avatar
mschoeneck committed
597
                                }
598 599 600 601 602
                            }
                            else
                            {
                                int tg67x = tg22x + (x << 16);
                                if (y > tg67x)
mschoeneck's avatar
mschoeneck committed
603
                                {
604
                                    if (m > _mag_p[k] && m >= _mag_n[k])
mschoeneck's avatar
mschoeneck committed
605
                                    {
606 607 608 609 610 611 612
                                        CANNY_CHECK_SIMD(m, high, (_pmap+k), stack);
                                    }
                                }
                                else
                                {
                                    int s = (xs ^ ys) < 0 ? -1 : 1;
                                    if(m > _mag_p[k - s] && m > _mag_n[k + s])
mschoeneck's avatar
mschoeneck committed
613
                                    {
614
                                        CANNY_CHECK_SIMD(m, high, (_pmap+k), stack);
mschoeneck's avatar
mschoeneck committed
615 616 617
                                    }
                                }
                            }
618 619 620 621
                            ++k;
                        } while((mask >>= 1));
                    }
                }
mschoeneck's avatar
mschoeneck committed
622

623 624 625 626 627 628
                if (j <= src.cols - 16)
                {
                    v_int32x4 v_m1 = v_load_aligned((const int*)(_mag_a + j));
                    v_int32x4 v_m2 = v_load_aligned((const int*)(_mag_a + j + 4));
                    v_int32x4 v_m3 = v_load_aligned((const int*)(_mag_a + j + 8));
                    v_int32x4 v_m4 = v_load_aligned((const int*)(_mag_a + j + 12));
mschoeneck's avatar
mschoeneck committed
629

630
                    v_store_aligned((signed char*)(_pmap + j), v_one);
mschoeneck's avatar
mschoeneck committed
631

632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657
                    v_int32x4 v_cmp1 = v_m1 > v_low;
                    v_int32x4 v_cmp2 = v_m2 > v_low;
                    v_int32x4 v_cmp3 = v_m3 > v_low;
                    v_int32x4 v_cmp4 = v_m4 > v_low;

                    v_int16x8 v_cmp80 = v_pack(v_cmp1, v_cmp2);
                    v_int16x8 v_cmp81 = v_pack(v_cmp3, v_cmp4);

                    v_int8x16 v_cmp = v_pack(v_cmp80, v_cmp81);
                    unsigned int mask = v_signmask(v_cmp);

                    if (mask)
                    {
                        int k = j;

                        do
                        {
                            int l = trailingZeros32(mask);
                            k += l;
                            mask >>= l;

                            int m = _mag_a[k];
                            short xs = _dx[k];
                            short ys = _dy[k];
                            int x = (int)std::abs(xs);
                            int y = (int)std::abs(ys) << 15;
mschoeneck's avatar
mschoeneck committed
658

659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688
                            int tg22x = x * TG22;

                            if (y < tg22x)
                            {
                                if (m > _mag_a[k - 1] && m >= _mag_a[k + 1])
                                {
                                    CANNY_CHECK_SIMD(m, high, (_pmap+k), stack);
                                }
                            }
                            else
                            {
                                int tg67x = tg22x + (x << 16);
                                if (y > tg67x)
                                {
                                    if (m > _mag_p[k] && m >= _mag_n[k])
                                    {
                                        CANNY_CHECK_SIMD(m, high, (_pmap+k), stack);
                                    }
                                }
                                else
                                {
                                    int s = (xs ^ ys) < 0 ? -1 : 1;
                                    if(m > _mag_p[k - s] && m > _mag_n[k + s])
                                    {
                                        CANNY_CHECK_SIMD(m, high, (_pmap+k), stack);
                                    }
                                }
                            }
                            ++k;
                        } while((mask >>= 1));
mschoeneck's avatar
mschoeneck committed
689
                    }
690
                    j += 16;
mschoeneck's avatar
mschoeneck committed
691 692 693 694
                }
            }
#endif
            for (; j < src.cols; j++)
orestis's avatar
orestis committed
695
            {
696
                int m = _mag_a[j];
orestis's avatar
orestis committed
697 698 699

                if (m > low)
                {
700 701 702 703
                    short xs = _dx[j];
                    short ys = _dy[j];
                    int x = (int)std::abs(xs);
                    int y = (int)std::abs(ys) << 15;
orestis's avatar
orestis committed
704 705 706 707 708

                    int tg22x = x * TG22;

                    if (y < tg22x)
                    {
709 710 711 712
                        if (m > _mag_a[j - 1] && m >= _mag_a[j + 1])
                        {
                            CANNY_CHECK(m, high, (_pmap+j), stack);
                        }
orestis's avatar
orestis committed
713 714 715
                    }
                    else
                    {
716
                        int tg67x = tg22x + (x << 16);
orestis's avatar
orestis committed
717 718
                        if (y > tg67x)
                        {
719 720 721 722
                            if (m > _mag_p[j] && m >= _mag_n[j])
                            {
                                CANNY_CHECK(m, high, (_pmap+j), stack);
                            }
orestis's avatar
orestis committed
723 724 725 726
                        }
                        else
                        {
                            int s = (xs ^ ys) < 0 ? -1 : 1;
727 728 729 730
                            if(m > _mag_p[j - s] && m > _mag_n[j + s])
                            {
                                CANNY_CHECK(m, high, (_pmap+j), stack);
                            }
orestis's avatar
orestis committed
731 732 733
                        }
                    }
                }
734
                _pmap[j] = 1;
orestis's avatar
orestis committed
735 736 737
            }
        }

738 739 740 741
        // Not for first row of first slice or last row of last slice
        uchar *pmapLower = (rowStart == 0) ? map.data : (map.data + (boundaries.start + 2) * mapstep);
        uint pmapDiff = (uint)(((rowEnd == src.rows) ? map.datalimit : (map.data + boundaries.end * mapstep)) - pmapLower);

orestis's avatar
orestis committed
742
        // now track the edges (hysteresis thresholding)
743
        CV_TRACE_REGION_NEXT("hysteresis");
744
        while (!stack.empty())
orestis's avatar
orestis committed
745
        {
746 747
            uchar *m = stack.back();
            stack.pop_back();
orestis's avatar
orestis committed
748 749 750

            // Stops thresholding from expanding to other slices by sending pixels in the borders of each
            // slice in a queue to be serially processed later.
751
            if((unsigned)(m - pmapLower) < pmapDiff)
orestis's avatar
orestis committed
752
            {
753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771
                if (!m[-mapstep-1]) CANNY_PUSH((m-mapstep-1), stack);
                if (!m[-mapstep])   CANNY_PUSH((m-mapstep), stack);
                if (!m[-mapstep+1]) CANNY_PUSH((m-mapstep+1), stack);
                if (!m[-1])         CANNY_PUSH((m-1), stack);
                if (!m[1])          CANNY_PUSH((m+1), stack);
                if (!m[mapstep-1])  CANNY_PUSH((m+mapstep-1), stack);
                if (!m[mapstep])    CANNY_PUSH((m+mapstep), stack);
                if (!m[mapstep+1])  CANNY_PUSH((m+mapstep+1), stack);
            }
            else
            {
                borderPeaksLocal.push_back(m);
                ptrdiff_t mapstep2 = m < pmapLower ? mapstep : -mapstep;

                if (!m[-1])         CANNY_PUSH((m-1), stack);
                if (!m[1])          CANNY_PUSH((m+1), stack);
                if (!m[mapstep2-1]) CANNY_PUSH((m+mapstep2-1), stack);
                if (!m[mapstep2])   CANNY_PUSH((m+mapstep2), stack);
                if (!m[mapstep2+1]) CANNY_PUSH((m+mapstep2+1), stack);
orestis's avatar
orestis committed
772 773
            }
        }
774

775 776 777 778
        if(!borderPeaksLocal.empty())
        {
            AutoLock lock(mutex);
            _borderPeaksParallel.insert(_borderPeaksParallel.end(), borderPeaksLocal.begin(), borderPeaksLocal.end());
779
        }
orestis's avatar
orestis committed
780 781 782
    }

private:
783 784 785
    const Mat &src, &src2;
    Mat &map;
    std::deque<uchar*> &_borderPeaksParallel;
786
    int low, high, aperture_size;
787 788 789 790 791 792
    bool L2gradient, needGradient;
    ptrdiff_t mapstep;
    int cn;
#if CV_SIMD128
    bool haveSIMD;
#endif
793
    mutable Mutex mutex;
orestis's avatar
orestis committed
794 795
};

796 797 798 799
class finalPass : public ParallelLoopBody
{

public:
800 801 802 803 804 805 806 807
    finalPass(const Mat &_map, Mat &_dst) :
        map(_map), dst(_dst)
    {
        dst = _dst;
#if CV_SIMD128
        haveSIMD = hasSIMD128();
#endif
    }
808 809 810 811 812 813

    ~finalPass() {}

    void operator()(const Range &boundaries) const
    {
        // the final pass, form the final image
814
        for (int i = boundaries.start; i < boundaries.end; i++)
815 816
        {
            int j = 0;
817
            uchar *pdst = dst.ptr<uchar>(i);
818
            const uchar *pmap = map.ptr<uchar>(i + 1);
819 820
#if CV_SIMD128
            if(haveSIMD)
821
                pmap += CV_MALLOC_SIMD128;
822 823
            else
#endif
824
                pmap += 1;
825 826
#if CV_SIMD128
            if(haveSIMD) {
827 828 829
                const v_uint8x16 v_zero = v_setzero_u8();
                const v_uint8x16 v_ff = ~v_zero;
                const v_uint8x16 v_two(2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2);
830

831 832
                for (; j <= dst.cols - 16; j += 16)
                {
833
                    v_uint8x16 v_pmap = v_load_aligned((const unsigned char*)(pmap + j));
834
                    v_pmap = v_select(v_pmap == v_two, v_ff, v_zero);
835
                    v_store((pdst + j), v_pmap);
836 837
                }

838 839 840 841
                if (j <= dst.cols - 8)
                {
                    v_uint8x16 v_pmap = v_load_low((const unsigned char*)(pmap + j));
                    v_pmap = v_select(v_pmap == v_two, v_ff, v_zero);
842 843
                    v_store_low((pdst + j), v_pmap);
                    j += 8;
844 845 846
                }
            }
#endif
mschoeneck's avatar
mschoeneck committed
847
            for (; j < dst.cols; j++)
848
            {
849
                pdst[j] = (uchar)-(pmap[j] >> 1);
850
            }
851 852 853 854
        }
    }

private:
855
    const Mat &map;
mschoeneck's avatar
mschoeneck committed
856
    Mat &dst;
857 858 859
#if CV_SIMD128
    bool haveSIMD;
#endif
860 861 862

    finalPass(const finalPass&); // = delete
    finalPass& operator=(const finalPass&); // = delete
863 864
};

865
#ifdef HAVE_OPENVX
866 867 868
namespace ovx {
    template <> inline bool skipSmallImages<VX_KERNEL_CANNY_EDGE_DETECTOR>(int w, int h) { return w*h < 640 * 480; }
}
869 870 871 872
static bool openvx_canny(const Mat& src, Mat& dst, int loVal, int hiVal, int kSize, bool useL2)
{
    using namespace ivx;

873
    Context context = ovx::getOpenVXContext();
874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912
    try
    {
    Image _src = Image::createFromHandle(
                context,
                Image::matTypeToFormat(src.type()),
                Image::createAddressing(src),
                src.data );
    Image _dst = Image::createFromHandle(
                context,
                Image::matTypeToFormat(dst.type()),
                Image::createAddressing(dst),
                dst.data );
    Threshold threshold = Threshold::createRange(context, VX_TYPE_UINT8, saturate_cast<uchar>(loVal), saturate_cast<uchar>(hiVal));

#if 0
    // the code below is disabled because vxuCannyEdgeDetector()
    // ignores context attribute VX_CONTEXT_IMMEDIATE_BORDER

    // FIXME: may fail in multithread case
    border_t prevBorder = context.immediateBorder();
    context.setImmediateBorder(VX_BORDER_REPLICATE);
    IVX_CHECK_STATUS( vxuCannyEdgeDetector(context, _src, threshold, kSize, (useL2 ? VX_NORM_L2 : VX_NORM_L1), _dst) );
    context.setImmediateBorder(prevBorder);
#else
    // alternative code without vxuCannyEdgeDetector()
    Graph graph = Graph::create(context);
    ivx::Node node = ivx::Node(vxCannyEdgeDetectorNode(graph, _src, threshold, kSize, (useL2 ? VX_NORM_L2 : VX_NORM_L1), _dst) );
    node.setBorder(VX_BORDER_REPLICATE);
    graph.verify();
    graph.process();
#endif

#ifdef VX_VERSION_1_1
    _src.swapHandle();
    _dst.swapHandle();
#endif
    }
    catch(const WrapperError& e)
    {
913
        VX_DbgThrow(e.what());
914 915 916
    }
    catch(const RuntimeError& e)
    {
917
        VX_DbgThrow(e.what());
918 919 920 921 922 923
    }

    return true;
}
#endif // HAVE_OPENVX

924
void Canny( InputArray _src, OutputArray _dst,
925 926
                double low_thresh, double high_thresh,
                int aperture_size, bool L2gradient )
927
{
928 929
    CV_INSTRUMENT_REGION()

930 931
    CV_Assert( _src.depth() == CV_8U );

932
    const Size size = _src.size();
933

934 935 936
    // we don't support inplace parameters in case with RGB/BGR src
    CV_Assert((_dst.getObj() != _src.getObj() || _src.type() == CV_8UC1) && "Inplace parameters are not supported");

937
    _dst.create(size, CV_8U);
Andrey Kamaev's avatar
Andrey Kamaev committed
938 939 940

    if (!L2gradient && (aperture_size & CV_CANNY_L2_GRADIENT) == CV_CANNY_L2_GRADIENT)
    {
941
        // backward compatibility
Andrey Kamaev's avatar
Andrey Kamaev committed
942 943 944 945 946
        aperture_size &= ~CV_CANNY_L2_GRADIENT;
        L2gradient = true;
    }

    if ((aperture_size & 1) == 0 || (aperture_size != -1 && (aperture_size < 3 || aperture_size > 7)))
947
        CV_Error(CV_StsBadFlag, "Aperture size should be odd between 3 and 7");
Andrey Kamaev's avatar
Andrey Kamaev committed
948

949 950 951
    if (low_thresh > high_thresh)
        std::swap(low_thresh, high_thresh);

952 953
    CV_OCL_RUN(_dst.isUMat() && (_src.channels() == 1 || _src.channels() == 3),
               ocl_Canny<false>(_src, UMat(), UMat(), _dst, (float)low_thresh, (float)high_thresh, aperture_size, L2gradient, _src.channels(), size))
954

elenagvo's avatar
elenagvo committed
955 956 957 958 959
    Mat src0 = _src.getMat(), dst = _dst.getMat();
    Mat src(src0.size(), src0.type(), src0.data, src0.step);

    CALL_HAL(canny, cv_hal_canny, src.data, src.step, dst.data, dst.step, src.cols, src.rows, src.channels(),
             low_thresh, high_thresh, aperture_size, L2gradient);
960

961
    CV_OVX_RUN(
apavlenko's avatar
apavlenko committed
962
        false && /* disabling due to accuracy issues */
963 964 965
            src.type() == CV_8UC1 &&
            !src.isSubmatrix() &&
            src.cols >= aperture_size &&
966 967
            src.rows >= aperture_size &&
            !ovx::skipSmallImages<VX_KERNEL_CANNY_EDGE_DETECTOR>(src.cols, src.rows),
968 969 970 971 972 973
        openvx_canny(
            src,
            dst,
            cvFloor(low_thresh),
            cvFloor(high_thresh),
            aperture_size,
974
            L2gradient ) )
975

Andrey Kamaev's avatar
Andrey Kamaev committed
976
#ifdef HAVE_TEGRA_OPTIMIZATION
977
    if (tegra::useTegra() && tegra::canny(src, dst, low_thresh, high_thresh, aperture_size, L2gradient))
Andrey Kamaev's avatar
Andrey Kamaev committed
978 979
        return;
#endif
980

981
    CV_IPP_RUN_FAST(ipp_Canny(src, Mat(), Mat(), dst, (float)low_thresh, (float)high_thresh, L2gradient, aperture_size))
982

983 984 985 986
    if (L2gradient)
    {
        low_thresh = std::min(32767.0, low_thresh);
        high_thresh = std::min(32767.0, high_thresh);
orestis's avatar
orestis committed
987

988 989 990 991 992
        if (low_thresh > 0) low_thresh *= low_thresh;
        if (high_thresh > 0) high_thresh *= high_thresh;
    }
    int low = cvFloor(low_thresh);
    int high = cvFloor(high_thresh);
orestis's avatar
orestis committed
993

994 995
    // If Scharr filter: aperture size is 3, ksize2 is 1
    int ksize2 = aperture_size < 0 ? 1 : aperture_size / 2;
996 997 998 999 1000 1001 1002
    // Minimum number of threads should be 1, maximum should not exceed number of CPU's, because of overhead
    int numOfThreads = std::max(1, std::min(getNumThreads(), getNumberOfCPUs()));
    // Make a fallback for pictures with too few rows.
    int grainSize = src.rows / numOfThreads;
    int minGrainSize = 2 * (ksize2 + 1);
    if (grainSize < minGrainSize)
        numOfThreads = std::max(1, src.rows / minGrainSize);
orestis's avatar
orestis committed
1003

1004 1005
    Mat map;
    std::deque<uchar*> stack;
orestis's avatar
orestis committed
1006

1007
    parallel_for_(Range(0, src.rows), parallelCanny(src, map, stack, low, high, aperture_size, L2gradient), numOfThreads);
1008

1009
    CV_TRACE_REGION("global_hysteresis");
1010
    // now track the edges (hysteresis thresholding)
1011 1012 1013
    ptrdiff_t mapstep = map.cols;

    while (!stack.empty())
1014
    {
1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025
        uchar* m = stack.back();
        stack.pop_back();

        if (!m[-mapstep-1]) CANNY_PUSH((m-mapstep-1), stack);
        if (!m[-mapstep])   CANNY_PUSH((m-mapstep), stack);
        if (!m[-mapstep+1]) CANNY_PUSH((m-mapstep+1), stack);
        if (!m[-1])         CANNY_PUSH((m-1), stack);
        if (!m[1])          CANNY_PUSH((m+1), stack);
        if (!m[mapstep-1])  CANNY_PUSH((m+mapstep-1), stack);
        if (!m[mapstep])    CANNY_PUSH((m+mapstep), stack);
        if (!m[mapstep+1])  CANNY_PUSH((m+mapstep+1), stack);
1026
    }
orestis's avatar
orestis committed
1027

1028
    CV_TRACE_REGION_NEXT("finalPass");
1029
    parallel_for_(Range(0, src.rows), finalPass(map, dst), src.total()/(double)(1<<16));
1030 1031 1032 1033 1034 1035
}

void Canny( InputArray _dx, InputArray _dy, OutputArray _dst,
                double low_thresh, double high_thresh,
                bool L2gradient )
{
1036 1037
    CV_INSTRUMENT_REGION()

1038 1039 1040 1041 1042 1043 1044 1045 1046
    CV_Assert(_dx.dims() == 2);
    CV_Assert(_dx.type() == CV_16SC1 || _dx.type() == CV_16SC3);
    CV_Assert(_dy.type() == _dx.type());
    CV_Assert(_dx.sameSize(_dy));

    if (low_thresh > high_thresh)
        std::swap(low_thresh, high_thresh);

    const Size size = _dx.size();
1047 1048

    CV_OCL_RUN(_dst.isUMat(),
1049
               ocl_Canny<true>(UMat(), _dx.getUMat(), _dy.getUMat(), _dst, (float)low_thresh, (float)high_thresh, 0, L2gradient, _dx.channels(), size))
1050

1051 1052 1053 1054 1055
    _dst.create(size, CV_8U);
    Mat dst = _dst.getMat();

    Mat dx = _dx.getMat();
    Mat dy = _dy.getMat();
1056

1057
    CV_IPP_RUN_FAST(ipp_Canny(Mat(), dx, dy, dst, (float)low_thresh, (float)high_thresh, L2gradient, 0))
1058

Andrey Kamaev's avatar
Andrey Kamaev committed
1059
    if (L2gradient)
1060
    {
Andrey Kamaev's avatar
Andrey Kamaev committed
1061 1062
        low_thresh = std::min(32767.0, low_thresh);
        high_thresh = std::min(32767.0, high_thresh);
1063

Andrey Kamaev's avatar
Andrey Kamaev committed
1064 1065
        if (low_thresh > 0) low_thresh *= low_thresh;
        if (high_thresh > 0) high_thresh *= high_thresh;
1066
    }
1067

Andrey Kamaev's avatar
Andrey Kamaev committed
1068 1069
    int low = cvFloor(low_thresh);
    int high = cvFloor(high_thresh);
1070

1071 1072
    std::deque<uchar*> stack;
    Mat map;
1073

1074 1075 1076 1077
    // Minimum number of threads should be 1, maximum should not exceed number of CPU's, because of overhead
    int numOfThreads = std::max(1, std::min(getNumThreads(), getNumberOfCPUs()));
    if (dx.rows / numOfThreads < 3)
        numOfThreads = std::max(1, dx.rows / 3);
1078

1079
    parallel_for_(Range(0, dx.rows), parallelCanny(dx, dy, map, stack, low, high, L2gradient), numOfThreads);
1080

1081
    CV_TRACE_REGION("global_hysteresis")
1082
    // now track the edges (hysteresis thresholding)
1083
    ptrdiff_t mapstep = map.cols;
1084

1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097
    while (!stack.empty())
    {
        uchar* m = stack.back();
        stack.pop_back();

        if (!m[-mapstep-1]) CANNY_PUSH((m-mapstep-1), stack);
        if (!m[-mapstep])   CANNY_PUSH((m-mapstep), stack);
        if (!m[-mapstep+1]) CANNY_PUSH((m-mapstep+1), stack);
        if (!m[-1])         CANNY_PUSH((m-1), stack);
        if (!m[1])          CANNY_PUSH((m+1), stack);
        if (!m[mapstep-1])  CANNY_PUSH((m+mapstep-1), stack);
        if (!m[mapstep])    CANNY_PUSH((m+mapstep), stack);
        if (!m[mapstep+1])  CANNY_PUSH((m+mapstep+1), stack);
1098 1099
    }

1100
    CV_TRACE_REGION_NEXT("finalPass");
1101
    parallel_for_(Range(0, dx.rows), finalPass(map, dst), dx.total()/(double)(1<<16));
1102 1103
}

1104 1105
} // namespace cv

1106 1107
void cvCanny( const CvArr* image, CvArr* edges, double threshold1,
              double threshold2, int aperture_size )
1108
{
1109 1110
    cv::Mat src = cv::cvarrToMat(image), dst = cv::cvarrToMat(edges);
    CV_Assert( src.size == dst.size && src.depth() == CV_8U && dst.type() == CV_8U );
1111

1112 1113
    cv::Canny(src, dst, threshold1, threshold2, aperture_size & 255,
              (aperture_size & CV_CANNY_L2_GRADIENT) != 0);
1114 1115 1116
}

/* End of file. */