matrix.cpp 112.0 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
/*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 "precomp.hpp"
44 45
#include "opencv2/core/gpumat.hpp"
#include "opencv2/core/opengl_interop.hpp"
46 47 48 49 50 51 52

/****************************************************************************************\
*                           [scaled] Identity matrix initialization                      *
\****************************************************************************************/

namespace cv {

V
Vadim Pisarevsky 已提交
53 54
void swap( Mat& a, Mat& b )
{
55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
    std::swap(a.flags, b.flags);
    std::swap(a.dims, b.dims);
    std::swap(a.rows, b.rows);
    std::swap(a.cols, b.cols);
    std::swap(a.data, b.data);
    std::swap(a.refcount, b.refcount);
    std::swap(a.datastart, b.datastart);
    std::swap(a.dataend, b.dataend);
    std::swap(a.datalimit, b.datalimit);
    std::swap(a.allocator, b.allocator);
    
    std::swap(a.size.p, b.size.p);
    std::swap(a.step.p, b.step.p);
    std::swap(a.step.buf[0], b.step.buf[0]);
    std::swap(a.step.buf[1], b.step.buf[1]);
V
Vadim Pisarevsky 已提交
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
    
    if( a.step.p == b.step.buf )
    {
        a.step.p = a.step.buf;
        a.size.p = &a.rows;
    }
    
    if( b.step.p == a.step.buf )
    {
        b.step.p = b.step.buf;
        b.size.p = &b.rows;
    }
}


static inline void setSize( Mat& m, int _dims, const int* _sz,
                            const size_t* _steps, bool autoSteps=false )
{
    CV_Assert( 0 <= _dims && _dims <= CV_MAX_DIM );
    if( m.dims != _dims )
    {
        if( m.step.p != m.step.buf )
        {
            fastFree(m.step.p);
            m.step.p = m.step.buf;
            m.size.p = &m.rows;
        }
        if( _dims > 2 )
        {
            m.step.p = (size_t*)fastMalloc(_dims*sizeof(m.step.p[0]) + (_dims+1)*sizeof(m.size.p[0]));
            m.size.p = (int*)(m.step.p + _dims) + 1;
            m.size.p[-1] = _dims;
102
            m.rows = m.cols = -1;
V
Vadim Pisarevsky 已提交
103 104 105 106 107 108 109
        }
    }
    
    m.dims = _dims;
    if( !_sz )
        return;
    
110
    size_t esz = CV_ELEM_SIZE(m.flags), total = esz;
V
Vadim Pisarevsky 已提交
111 112 113 114
    int i;
    for( i = _dims-1; i >= 0; i-- )
    {
        int s = _sz[i];
115
        CV_Assert( s >= 0 );
V
Vadim Pisarevsky 已提交
116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136
        m.size.p[i] = s;
        
        if( _steps )
            m.step.p[i] = i < _dims-1 ? _steps[i] : esz;
        else if( autoSteps )
        {
            m.step.p[i] = total;
            int64 total1 = (int64)total*s;
            if( (uint64)total1 != (size_t)total1 )
                CV_Error( CV_StsOutOfRange, "The total matrix size does not fit to \"size_t\" type" );
            total = (size_t)total1;
        }
    }
    
    if( _dims == 1 )
    {
        m.dims = 2;
        m.cols = 1;
        m.step[1] = esz;
    }
}
137 138
   
static void updateContinuityFlag(Mat& m)
V
Vadim Pisarevsky 已提交
139 140 141 142 143 144 145 146 147 148 149 150 151
{
    int i, j;
    for( i = 0; i < m.dims; i++ )
    {
        if( m.size[i] > 1 )
            break;
    }
    
    for( j = m.dims-1; j > i; j-- )
    {
        if( m.step[j]*m.size[j] < m.step[j-1] )
            break;
    }
152
    
153
    int64 t = (int64)m.step[0]*m.size[0];
V
Vadim Pisarevsky 已提交
154 155
    if( j <= i && t == (int)t )
        m.flags |= Mat::CONTINUOUS_FLAG;
156 157 158
    else
        m.flags &= ~Mat::CONTINUOUS_FLAG;
}
V
Vadim Pisarevsky 已提交
159
    
160 161 162
static void finalizeHdr(Mat& m)
{
    updateContinuityFlag(m);
163 164
    int d = m.dims;
    if( d > 2 )
V
Vadim Pisarevsky 已提交
165 166 167
        m.rows = m.cols = -1;
    if( m.data )
    {
168 169 170
        m.datalimit = m.datastart + m.size[0]*m.step[0];
        if( m.size[0] > 0 )
        {
171 172
            m.dataend = m.data + m.size[d-1]*m.step[d-1];
            for( int i = 0; i < d-1; i++ )
173 174 175 176
                m.dataend += (m.size[i] - 1)*m.step[i];
        }
        else
            m.dataend = m.datalimit;
V
Vadim Pisarevsky 已提交
177
    }
178 179
    else
        m.dataend = m.datalimit = 0;
V
Vadim Pisarevsky 已提交
180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203
}
    
    
void Mat::create(int d, const int* _sizes, int _type)
{
    int i;
    CV_Assert(0 <= d && _sizes && d <= CV_MAX_DIM && _sizes);
    _type = CV_MAT_TYPE(_type);
    
    if( data && (d == dims || (d == 1 && dims <= 2)) && _type == type() )
    {
        if( d == 2 && rows == _sizes[0] && cols == _sizes[1] )
            return;
        for( i = 0; i < d; i++ )
            if( size[i] != _sizes[i] )
                break;
        if( i == d && (d > 1 || size[1] == 1))
            return;
    }
    
    release();
    if( d == 0 )
        return;
    flags = (_type & CV_MAT_TYPE_MASK) | MAGIC_VAL;
204
    setSize(*this, d, _sizes, 0, true);
V
Vadim Pisarevsky 已提交
205
    
206
    if( total() > 0 )
V
Vadim Pisarevsky 已提交
207
    {
A
Andrey Pavlenko 已提交
208
#ifdef HAVE_TGPU
209
        if( !allocator || allocator == tegra::getAllocator() ) allocator = tegra::getAllocator(d, _sizes, _type);
A
Andrey Pavlenko 已提交
210
#endif
211 212 213 214 215 216 217 218 219
        if( !allocator )
        {
            size_t total = alignSize(step.p[0]*size.p[0], (int)sizeof(*refcount));
            data = datastart = (uchar*)fastMalloc(total + (int)sizeof(*refcount));
            refcount = (int*)(data + total);
            *refcount = 1;
        }
        else
        {
220 221 222 223 224 225 226 227 228 229 230 231 232 233
#ifdef HAVE_TGPU
           try 
            {
                allocator->allocate(dims, size, _type, refcount, datastart, data, step.p);
                CV_Assert( step[dims-1] == (size_t)CV_ELEM_SIZE(flags) );
            }catch(...)
            {
                allocator = 0;
                size_t total = alignSize(step.p[0]*size.p[0], (int)sizeof(*refcount));
                data = datastart = (uchar*)fastMalloc(total + (int)sizeof(*refcount));
                refcount = (int*)(data + total);
                *refcount = 1;
            }
#else
234 235
            allocator->allocate(dims, size, _type, refcount, datastart, data, step.p);
            CV_Assert( step[dims-1] == (size_t)CV_ELEM_SIZE(flags) );
236
#endif
237
        }
V
Vadim Pisarevsky 已提交
238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266
    }
    
    finalizeHdr(*this);
}

void Mat::copySize(const Mat& m)
{
    setSize(*this, m.dims, 0, 0);
    for( int i = 0; i < dims; i++ )
    {
        size[i] = m.size[i];
        step[i] = m.step[i];
    }
}
    
void Mat::deallocate()
{
    if( allocator )
        allocator->deallocate(refcount, datastart, data);
    else
    {
        CV_DbgAssert(refcount != 0);
        fastFree(datastart);
    }
}

    
Mat::Mat(const Mat& m, const Range& rowRange, const Range& colRange)
    : flags(0), dims(0), rows(0), cols(0), data(0), refcount(0),
267
    datastart(0), dataend(0), datalimit(0), allocator(0), size(&rows)
V
Vadim Pisarevsky 已提交
268 269 270 271 272 273 274 275 276 277 278 279 280 281
{
    CV_Assert( m.dims >= 2 );
    if( m.dims > 2 )
    {
        AutoBuffer<Range> rs(m.dims);
        rs[0] = rowRange;
        rs[1] = colRange;
        for( int i = 2; i < m.dims; i++ )
            rs[i] = Range::all();
        *this = m(rs);
        return;
    }
    
    *this = m;
282
    if( rowRange != Range::all() && rowRange != Range(0,rows) )
V
Vadim Pisarevsky 已提交
283 284 285 286
    {
        CV_Assert( 0 <= rowRange.start && rowRange.start <= rowRange.end && rowRange.end <= m.rows );
        rows = rowRange.size();
        data += step*rowRange.start;
287
        flags |= SUBMATRIX_FLAG;
V
Vadim Pisarevsky 已提交
288 289
    }
    
290
    if( colRange != Range::all() && colRange != Range(0,cols) )
V
Vadim Pisarevsky 已提交
291 292 293 294 295
    {
        CV_Assert( 0 <= colRange.start && colRange.start <= colRange.end && colRange.end <= m.cols );
        cols = colRange.size();
        data += colRange.start*elemSize();
        flags &= cols < m.cols ? ~CONTINUOUS_FLAG : -1;
296
        flags |= SUBMATRIX_FLAG;
V
Vadim Pisarevsky 已提交
297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312
    }
    
    if( rows == 1 )
        flags |= CONTINUOUS_FLAG;
    
    if( rows <= 0 || cols <= 0 )
    {
        release();
        rows = cols = 0;
    }
}
 
    
Mat::Mat(const Mat& m, const Rect& roi)
    : flags(m.flags), dims(2), rows(roi.height), cols(roi.width),
    data(m.data + roi.y*m.step[0]), refcount(m.refcount),
313 314
    datastart(m.datastart), dataend(m.dataend), datalimit(m.datalimit),
    allocator(m.allocator), size(&rows)
V
Vadim Pisarevsky 已提交
315 316 317 318 319
{
    CV_Assert( m.dims <= 2 );
    flags &= roi.width < m.cols ? ~CONTINUOUS_FLAG : -1;
    flags |= roi.height == 1 ? CONTINUOUS_FLAG : 0;
    
320
    size_t esz = CV_ELEM_SIZE(flags);
V
Vadim Pisarevsky 已提交
321 322 323 324 325
    data += roi.x*esz;
    CV_Assert( 0 <= roi.x && 0 <= roi.width && roi.x + roi.width <= m.cols &&
              0 <= roi.y && 0 <= roi.height && roi.y + roi.height <= m.rows );
    if( refcount )
        CV_XADD(refcount, 1);
326 327
    if( roi.width < m.cols || roi.height < m.rows )
        flags |= SUBMATRIX_FLAG;
V
Vadim Pisarevsky 已提交
328 329 330 331 332 333 334 335 336 337 338 339
    
    step[0] = m.step[0]; step[1] = esz;
    
    if( rows <= 0 || cols <= 0 )
    {
        release();
        rows = cols = 0;
    }
}

    
Mat::Mat(int _dims, const int* _sizes, int _type, void* _data, const size_t* _steps)
340 341 342 343
    : flags(MAGIC_VAL|CV_MAT_TYPE(_type)), dims(0),
    rows(0), cols(0), data((uchar*)_data), refcount(0),
    datastart((uchar*)_data), dataend((uchar*)_data), datalimit((uchar*)_data),
    allocator(0), size(&rows)
V
Vadim Pisarevsky 已提交
344 345 346 347 348 349 350 351
{
    setSize(*this, _dims, _sizes, _steps, true);
    finalizeHdr(*this);
}
    
    
Mat::Mat(const Mat& m, const Range* ranges)
    : flags(m.flags), dims(0), rows(0), cols(0), data(0), refcount(0),
352
    datastart(0), dataend(0), datalimit(0), allocator(0), size(&rows)
V
Vadim Pisarevsky 已提交
353 354 355 356 357 358 359 360 361 362 363 364 365
{
    int i, d = m.dims;
    
    CV_Assert(ranges);
    for( i = 0; i < d; i++ )
    {
        Range r = ranges[i];
        CV_Assert( r == Range::all() || (0 <= r.start && r.start < r.end && r.end <= m.size[i]) );
    }
    *this = m;
    for( i = 0; i < d; i++ )
    {
        Range r = ranges[i];
366
        if( r != Range::all() && r != Range(0, size.p[i]))
V
Vadim Pisarevsky 已提交
367
        {
368 369 370
            size.p[i] = r.end - r.start;
            data += r.start*step.p[i];
            flags |= SUBMATRIX_FLAG;
V
Vadim Pisarevsky 已提交
371 372
        }
    }
373
    updateContinuityFlag(*this);
V
Vadim Pisarevsky 已提交
374 375 376 377 378 379
}
 
    
Mat::Mat(const CvMatND* m, bool copyData)
    : flags(MAGIC_VAL|CV_MAT_TYPE(m->type)), dims(0), rows(0), cols(0),
    data((uchar*)m->data.ptr), refcount(0),
380
    datastart((uchar*)m->data.ptr), allocator(0),
V
Vadim Pisarevsky 已提交
381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430
    size(&rows)
{
    int _sizes[CV_MAX_DIM];
    size_t _steps[CV_MAX_DIM];
    
    int i, d = m->dims;
    for( i = 0; i < d; i++ )
    {
        _sizes[i] = m->dim[i].size;
        _steps[i] = m->dim[i].step;
    }
    
    setSize(*this, d, _sizes, _steps);
    finalizeHdr(*this);

    if( copyData )
    {
        Mat temp(*this);
        temp.copyTo(*this);
    }
}
    
    
Mat Mat::diag(int d) const
{
    CV_Assert( dims <= 2 );
    Mat m = *this;
    size_t esz = elemSize();
    int len;
    
    if( d >= 0 )
    {
        len = std::min(cols - d, rows);
        m.data += esz*d;
    }
    else
    {
        len = std::min(rows + d, cols);
        m.data -= step[0]*d;
    }
    CV_DbgAssert( len > 0 );
    
    m.size[0] = m.rows = len;
    m.size[1] = m.cols = 1;
    m.step[0] += (len > 1 ? esz : 0);
    
    if( m.rows > 1 )
        m.flags &= ~CONTINUOUS_FLAG;
    else
        m.flags |= CONTINUOUS_FLAG;
431 432 433 434
    
    if( size() != Size(1,1) )
        m.flags |= SUBMATRIX_FLAG;
    
V
Vadim Pisarevsky 已提交
435 436 437 438
    return m;
}
    
    
439
Mat::Mat(const IplImage* img, bool copyData)
V
Vadim Pisarevsky 已提交
440 441
    : flags(MAGIC_VAL), dims(2), rows(0), cols(0),
    data(0), refcount(0), datastart(0), dataend(0), allocator(0), size(&rows)
442 443 444 445 446
{
    CV_DbgAssert(CV_IS_IMAGE(img) && img->imageData != 0);
    
    int depth = IPL2CV_DEPTH(img->depth);
    size_t esz;
V
Vadim Pisarevsky 已提交
447
    step[0] = img->widthStep;
448 449 450 451 452 453 454

    if(!img->roi)
    {
        CV_Assert(img->dataOrder == IPL_DATA_ORDER_PIXEL);
        flags = MAGIC_VAL + CV_MAKETYPE(depth, img->nChannels);
        rows = img->height; cols = img->width;
        datastart = data = (uchar*)img->imageData;
455
        esz = CV_ELEM_SIZE(flags);
456 457 458 459 460 461 462
    }
    else
    {
        CV_Assert(img->dataOrder == IPL_DATA_ORDER_PIXEL || img->roi->coi != 0);
        bool selectedPlane = img->roi->coi && img->dataOrder == IPL_DATA_ORDER_PLANE;
        flags = MAGIC_VAL + CV_MAKETYPE(depth, selectedPlane ? 1 : img->nChannels);
        rows = img->roi->height; cols = img->roi->width;
463
        esz = CV_ELEM_SIZE(flags);
464 465
        data = datastart = (uchar*)img->imageData +
			(selectedPlane ? (img->roi->coi - 1)*step*img->height : 0) +
V
Vadim Pisarevsky 已提交
466
			img->roi->yOffset*step[0] + img->roi->xOffset*esz;        
467
    }
468 469 470
    datalimit = datastart + step.p[0]*rows;
    dataend = datastart + step.p[0]*(rows-1) + esz*cols;
    flags |= (cols*esz == step.p[0] || rows == 1 ? CONTINUOUS_FLAG : 0);
V
Vadim Pisarevsky 已提交
471
    step[1] = esz;
472 473 474 475

    if( copyData )
    {
        Mat m = *this;
476
        release();
477 478 479 480 481 482 483 484 485 486 487 488 489 490 491
        if( !img->roi || !img->roi->coi ||
            img->dataOrder == IPL_DATA_ORDER_PLANE)
            m.copyTo(*this);
        else
        {
            int ch[] = {img->roi->coi - 1, 0};
            create(m.rows, m.cols, m.type());
            mixChannels(&m, 1, this, 1, ch, 1);
        }
    }
}

    
Mat::operator IplImage() const
{
V
Vadim Pisarevsky 已提交
492
    CV_Assert( dims <= 2 );
493 494
    IplImage img;
    cvInitImageHeader(&img, size(), cvIplDepth(flags), channels());
V
Vadim Pisarevsky 已提交
495
    cvSetData(&img, data, (int)step[0]);
496 497
    return img;
}
498 499 500 501 502

    
void Mat::pop_back(size_t nelems)
{
    CV_Assert( nelems <= (size_t)size.p[0] );
503
    
504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543
    if( isSubmatrix() )
        *this = rowRange(0, size.p[0] - (int)nelems);
    else
    {
        size.p[0] -= (int)nelems;
        dataend -= nelems*step.p[0];
        /*if( size.p[0] <= 1 )
        {
            if( dims <= 2 )
                flags |= CONTINUOUS_FLAG;
            else
                updateContinuityFlag(*this);
        }*/
    }
}
    
    
void Mat::push_back_(const void* elem)
{
    int r = size.p[0];
    if( isSubmatrix() || dataend + step.p[0] > datalimit )
        reserve( std::max(r + 1, (r*3+1)/2) );
    
    size_t esz = elemSize();
    memcpy(data + r*step.p[0], elem, esz);
    size.p[0] = r + 1;
    dataend += step.p[0];
    if( esz < step.p[0] )
        flags &= ~CONTINUOUS_FLAG;
}

void Mat::reserve(size_t nelems)
{
    const size_t MIN_SIZE = 64;
    
    CV_Assert( (int)nelems >= 0 );
    if( !isSubmatrix() && data + step.p[0]*nelems <= datalimit )
        return;
    
    int r = size.p[0];
544 545 546 547
    
    if( (size_t)r >= nelems )
        return;
    
548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570
    size.p[0] = std::max((int)nelems, 1);
    size_t newsize = total()*elemSize();
    
    if( newsize < MIN_SIZE )
        size.p[0] = (int)((MIN_SIZE + newsize - 1)*nelems/newsize);
    
    Mat m(dims, size.p, type());
    size.p[0] = r;
    if( r > 0 )
    {
        Mat mpart = m.rowRange(0, r);
        copyTo(mpart);
    }
    
    *this = m;
    size.p[0] = r;
    dataend = data + step.p[0]*r;
}

    
void Mat::resize(size_t nelems)
{
    int saveRows = size.p[0];
571 572
    if( saveRows == (int)nelems )
        return;
573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601
    CV_Assert( (int)nelems >= 0 );
    
    if( isSubmatrix() || data + step.p[0]*nelems > datalimit )
        reserve(nelems);
    
    size.p[0] = (int)nelems;
    dataend += (size.p[0] - saveRows)*step.p[0];
    
    //updateContinuityFlag(*this);
}    

    
void Mat::resize(size_t nelems, const Scalar& s)
{
    int saveRows = size.p[0];
    resize(nelems);
    
    if( size.p[0] > saveRows )
    {
        Mat part = rowRange(saveRows, size.p[0]);
        part = s;
    }
}    
    
void Mat::push_back(const Mat& elems)
{
    int r = size.p[0], delta = elems.size.p[0];
    if( delta == 0 )
        return;
602 603 604 605 606
    if( this == &elems )
    {
        Mat tmp = elems;
        push_back(tmp);
        return;
607
    }
608 609 610 611 612
	if( !data )
	{
		*this = elems.clone();
		return;
	}
613 614 615 616 617 618 619 620

    size.p[0] = elems.size.p[0];
    bool eq = size == elems.size;
    size.p[0] = r;
    if( !eq )
        CV_Error(CV_StsUnmatchedSizes, "");
    if( type() != elems.type() )
        CV_Error(CV_StsUnmatchedFormats, "");
621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638
    
    if( isSubmatrix() || dataend + step.p[0]*delta > datalimit )
        reserve( std::max(r + delta, (r*3+1)/2) );
    
    size.p[0] += delta;
    dataend += step.p[0]*delta;
    
    //updateContinuityFlag(*this);
    
    if( isContinuous() && elems.isContinuous() )
        memcpy(data + r*step.p[0], elems.data, elems.total()*elems.elemSize());
    else
    {
        Mat part = rowRange(r, r + delta);
        elems.copyTo(part);
    }
}

639 640
    
Mat cvarrToMat(const CvArr* arr, bool copyData,
641
               bool /*allowND*/, int coiMode)
642
{
V
Vadim Pisarevsky 已提交
643 644
    if( !arr )
        return Mat();
645 646
    if( CV_IS_MAT(arr) )
        return Mat((const CvMat*)arr, copyData );
V
Vadim Pisarevsky 已提交
647 648 649
    if( CV_IS_MATND(arr) )
        return Mat((const CvMatND*)arr, copyData );
    if( CV_IS_IMAGE(arr) )
650 651 652 653 654 655
    {
        const IplImage* iplimg = (const IplImage*)arr;
        if( coiMode == 0 && iplimg->roi && iplimg->roi->coi > 0 )
            CV_Error(CV_BadCOI, "COI is not supported by the function");
        return Mat(iplimg, copyData);
    }
V
Vadim Pisarevsky 已提交
656
    if( CV_IS_SEQ(arr) )
657 658 659 660 661 662 663 664 665
    {
        CvSeq* seq = (CvSeq*)arr;
        CV_Assert(seq->total > 0 && CV_ELEM_SIZE(seq->flags) == seq->elem_size);
        if(!copyData && seq->first->next == seq->first)
            return Mat(seq->total, 1, CV_MAT_TYPE(seq->flags), seq->first->data);
        Mat buf(seq->total, 1, CV_MAT_TYPE(seq->flags));
        cvCvtSeqToArray(seq, buf.data, CV_WHOLE_SEQ);
        return buf;
    }
V
Vadim Pisarevsky 已提交
666 667 668 669 670 671 672 673 674 675 676 677
    CV_Error(CV_StsBadArg, "Unknown array type");
    return Mat();
}

void Mat::locateROI( Size& wholeSize, Point& ofs ) const
{
    CV_Assert( dims <= 2 && step[0] > 0 );
    size_t esz = elemSize(), minstep;
    ptrdiff_t delta1 = data - datastart, delta2 = dataend - datastart;
    
    if( delta1 == 0 )
        ofs.x = ofs.y = 0;
678 679
    else
    {
V
Vadim Pisarevsky 已提交
680 681 682
        ofs.y = (int)(delta1/step[0]);
        ofs.x = (int)((delta1 - step[0]*ofs.y)/esz);
        CV_DbgAssert( data == datastart + ofs.y*step[0] + ofs.x*esz );
683
    }
V
Vadim Pisarevsky 已提交
684 685 686 687 688
    minstep = (ofs.x + cols)*esz;
    wholeSize.height = (int)((delta2 - minstep)/step[0] + 1);
    wholeSize.height = std::max(wholeSize.height, ofs.y + rows);
    wholeSize.width = (int)((delta2 - step*(wholeSize.height-1))/esz);
    wholeSize.width = std::max(wholeSize.width, ofs.x + cols);
689 690
}

V
Vadim Pisarevsky 已提交
691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707
Mat& Mat::adjustROI( int dtop, int dbottom, int dleft, int dright )
{
    CV_Assert( dims <= 2 && step[0] > 0 );
    Size wholeSize; Point ofs;
    size_t esz = elemSize();
    locateROI( wholeSize, ofs );
    int row1 = std::max(ofs.y - dtop, 0), row2 = std::min(ofs.y + rows + dbottom, wholeSize.height);
    int col1 = std::max(ofs.x - dleft, 0), col2 = std::min(ofs.x + cols + dright, wholeSize.width);
    data += (row1 - ofs.y)*step + (col1 - ofs.x)*esz;
    rows = row2 - row1; cols = col2 - col1;
    size.p[0] = rows; size.p[1] = cols;
    if( esz*cols == step[0] || rows == 1 )
        flags |= CONTINUOUS_FLAG;
    else
        flags &= ~CONTINUOUS_FLAG;
    return *this;
}    
708 709

}
V
Vadim Pisarevsky 已提交
710
    
711
void cv::extractImageCOI(const CvArr* arr, OutputArray _ch, int coi)
712 713
{
    Mat mat = cvarrToMat(arr, false, true, 1);
714 715
    _ch.create(mat.dims, mat.size, mat.depth());
    Mat ch = _ch.getMat();
V
Vadim Pisarevsky 已提交
716 717 718 719 720
    if(coi < 0)
    { 
        CV_Assert( CV_IS_IMAGE(arr) );
        coi = cvGetImageCOI((const IplImage*)arr)-1;
    }
721 722 723 724 725
    CV_Assert(0 <= coi && coi < mat.channels());
    int _pairs[] = { coi, 0 };
    mixChannels( &mat, 1, &ch, 1, _pairs, 1 );
}
    
726
void cv::insertImageCOI(InputArray _ch, CvArr* arr, int coi)
727
{
728
    Mat ch = _ch.getMat(), mat = cvarrToMat(arr, false, true, 1);
V
Vadim Pisarevsky 已提交
729 730 731 732 733
    if(coi < 0)
    { 
        CV_Assert( CV_IS_IMAGE(arr) );
        coi = cvGetImageCOI((const IplImage*)arr)-1;
    }
V
Vadim Pisarevsky 已提交
734
    CV_Assert(ch.size == mat.size && ch.depth() == mat.depth() && 0 <= coi && coi < mat.channels());
735 736 737 738
    int _pairs[] = { 0, coi };
    mixChannels( &ch, 1, &mat, 1, _pairs, 1 );
}
    
739 740
namespace cv
{
741 742 743 744

Mat Mat::reshape(int new_cn, int new_rows) const
{
    int cn = channels();
745 746 747 748 749 750 751 752 753 754 755 756
    Mat hdr = *this;
    
    if( dims > 2 && new_rows == 0 && new_cn != 0 && size[dims-1]*cn % new_cn == 0 )
    {
        hdr.flags = (hdr.flags & ~CV_MAT_CN_MASK) | ((new_cn-1) << CV_CN_SHIFT);
        hdr.step[dims-1] = CV_ELEM_SIZE(hdr.flags);
        hdr.size[dims-1] = hdr.size[dims-1]*cn / new_cn;
        return hdr;
    }
    
    CV_Assert( dims <= 2 );
    
757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781
    if( new_cn == 0 )
        new_cn = cn;

    int total_width = cols * cn;

    if( (new_cn > total_width || total_width % new_cn != 0) && new_rows == 0 )
        new_rows = rows * total_width / new_cn;

    if( new_rows != 0 && new_rows != rows )
    {
        int total_size = total_width * rows;
        if( !isContinuous() )
            CV_Error( CV_BadStep,
            "The matrix is not continuous, thus its number of rows can not be changed" );

        if( (unsigned)new_rows > (unsigned)total_size )
            CV_Error( CV_StsOutOfRange, "Bad new number of rows" );

        total_width = total_size / new_rows;

        if( total_width * new_rows != total_size )
            CV_Error( CV_StsBadArg, "The total number of matrix elements "
                                    "is not divisible by the new number of rows" );

        hdr.rows = new_rows;
V
Vadim Pisarevsky 已提交
782
        hdr.step[0] = total_width * elemSize1();
783 784 785 786 787 788 789 790 791 792
    }

    int new_width = total_width / new_cn;

    if( new_width * new_cn != total_width )
        CV_Error( CV_BadNumChannels,
        "The total width is not divisible by the new number of channels" );

    hdr.cols = new_width;
    hdr.flags = (hdr.flags & ~CV_MAT_CN_MASK) | ((new_cn-1) << CV_CN_SHIFT);
793
    hdr.step[1] = CV_ELEM_SIZE(hdr.flags);
794 795 796
    return hdr;
}

797
    
798 799 800 801 802 803 804 805 806
int Mat::checkVector(int _elemChannels, int _depth, bool _requireContinuous) const
{
    return (depth() == _depth || _depth <= 0) &&
        (isContinuous() || !_requireContinuous) &&
        ((dims == 2 && (((rows == 1 || cols == 1) && channels() == _elemChannels) || (cols == _elemChannels))) ||
        (dims == 3 && channels() == 1 && size.p[2] == _elemChannels && (size.p[0] == 1 || size.p[1] == 1) &&
         (isContinuous() || step.p[1] == step.p[2]*size.p[2])))
    ? (int)(total()*channels()/_elemChannels) : -1;
}
807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881


void scalarToRawData(const Scalar& s, void* _buf, int type, int unroll_to)
{
    int i, depth = CV_MAT_DEPTH(type), cn = CV_MAT_CN(type);
    CV_Assert(cn <= 4);
    switch(depth)
    {
    case CV_8U:
        {
        uchar* buf = (uchar*)_buf;
        for(i = 0; i < cn; i++)
            buf[i] = saturate_cast<uchar>(s.val[i]);
        for(; i < unroll_to; i++)
            buf[i] = buf[i-cn];
        }
        break;
    case CV_8S:
        {
        schar* buf = (schar*)_buf;
        for(i = 0; i < cn; i++)
            buf[i] = saturate_cast<schar>(s.val[i]);
        for(; i < unroll_to; i++)
            buf[i] = buf[i-cn];
        }
        break;
    case CV_16U:
        {
        ushort* buf = (ushort*)_buf;
        for(i = 0; i < cn; i++)
            buf[i] = saturate_cast<ushort>(s.val[i]);
        for(; i < unroll_to; i++)
            buf[i] = buf[i-cn];
        }
        break;
    case CV_16S:
        {
        short* buf = (short*)_buf;
        for(i = 0; i < cn; i++)
            buf[i] = saturate_cast<short>(s.val[i]);
        for(; i < unroll_to; i++)
            buf[i] = buf[i-cn];
        }
        break;
    case CV_32S:
        {
        int* buf = (int*)_buf;
        for(i = 0; i < cn; i++)
            buf[i] = saturate_cast<int>(s.val[i]);
        for(; i < unroll_to; i++)
            buf[i] = buf[i-cn];
        }
        break;
    case CV_32F:
        {
        float* buf = (float*)_buf;
        for(i = 0; i < cn; i++)
            buf[i] = saturate_cast<float>(s.val[i]);
        for(; i < unroll_to; i++)
            buf[i] = buf[i-cn];
        }
        break;
    case CV_64F:
        {
        double* buf = (double*)_buf;
        for(i = 0; i < cn; i++)
            buf[i] = saturate_cast<double>(s.val[i]);
        for(; i < unroll_to; i++)
            buf[i] = buf[i-cn];
        break;
        }
    default:
        CV_Error(CV_StsUnsupportedFormat,"");
    }
}
882 883 884 885 886 887

    
/*************************************************************************************************\
                                        Input/Output Array
\*************************************************************************************************/

888 889 890
_InputArray::_InputArray() : flags(0), obj(0) {}
_InputArray::_InputArray(const Mat& m) : flags(MAT), obj((void*)&m) {}
_InputArray::_InputArray(const vector<Mat>& vec) : flags(STD_VECTOR_MAT), obj((void*)&vec) {}
891 892 893 894
_InputArray::_InputArray(const double& val) : flags(FIXED_TYPE + FIXED_SIZE + MATX + CV_64F), obj((void*)&val), sz(Size(1,1)) {}
_InputArray::_InputArray(const MatExpr& expr) : flags(FIXED_TYPE + FIXED_SIZE + EXPR), obj((void*)&expr) {}
_InputArray::_InputArray(const GlBuffer& buf) : flags(FIXED_TYPE + FIXED_SIZE + OPENGL_BUFFER), obj((void*)&buf) {}
_InputArray::_InputArray(const GlTexture& tex) : flags(FIXED_TYPE + FIXED_SIZE + OPENGL_TEXTURE), obj((void*)&tex) {}
895
_InputArray::_InputArray(const gpu::GpuMat& d_mat) : flags(GPU_MAT), obj((void*)&d_mat) {}
896
 
897
Mat _InputArray::getMat(int i) const
898 899 900 901 902
{
    int k = kind();
    
    if( k == MAT )
    {
V
Vadim Pisarevsky 已提交
903 904 905 906
        const Mat* m = (const Mat*)obj;
        if( i < 0 )
            return *m;
        return m->row(i);
907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953
    }
    
    if( k == EXPR )
    {
        CV_Assert( i < 0 );
        return (Mat)*((const MatExpr*)obj);
    }
    
    if( k == MATX )
    {
        CV_Assert( i < 0 );
        return Mat(sz, flags, obj);
    }
    
    if( k == STD_VECTOR )
    {
        CV_Assert( i < 0 );
        int t = CV_MAT_TYPE(flags);
        const vector<uchar>& v = *(const vector<uchar>*)obj;
        
        return !v.empty() ? Mat(size(), t, (void*)&v[0]) : Mat();
    }
    
    if( k == NONE )
        return Mat();
    
    if( k == STD_VECTOR_VECTOR )
    {
        int t = type(i);
        const vector<vector<uchar> >& vv = *(const vector<vector<uchar> >*)obj;
        CV_Assert( 0 <= i && i < (int)vv.size() );
        const vector<uchar>& v = vv[i];
        
        return !v.empty() ? Mat(size(i), t, (void*)&v[0]) : Mat();
    }
    
    CV_Assert( k == STD_VECTOR_MAT );
    //if( k == STD_VECTOR_MAT )
    {
        const vector<Mat>& v = *(const vector<Mat>*)obj;
        CV_Assert( 0 <= i && i < (int)v.size() );
        
        return v[i];
    }        
}
    
    
954
void _InputArray::getMatVector(vector<Mat>& mv) const
955 956 957 958 959 960
{
    int k = kind();
    
    if( k == MAT )
    {
        const Mat& m = *(const Mat*)obj;
961
        int i, n = (int)m.size[0];
962 963 964 965 966 967 968 969 970 971 972
        mv.resize(n);
        
        for( i = 0; i < n; i++ )
            mv[i] = m.dims == 2 ? Mat(1, m.cols, m.type(), (void*)m.ptr(i)) :
                Mat(m.dims-1, &m.size[1], m.type(), (void*)m.ptr(i), &m.step[1]);
        return;
    }
    
    if( k == EXPR )
    {
        Mat m = *(const MatExpr*)obj;
973
        int i, n = m.size[0];
974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012
        mv.resize(n);
        
        for( i = 0; i < n; i++ )
            mv[i] = m.row(i);
        return;
    }
    
    if( k == MATX )
    {
        size_t i, n = sz.height, esz = CV_ELEM_SIZE(flags);
        mv.resize(n);
        
        for( i = 0; i < n; i++ )
            mv[i] = Mat(1, sz.width, CV_MAT_TYPE(flags), (uchar*)obj + esz*sz.width*i);
        return;
    }
    
    if( k == STD_VECTOR )
    {
        const vector<uchar>& v = *(const vector<uchar>*)obj;
        
        size_t i, n = v.size(), esz = CV_ELEM_SIZE(flags);
        int t = CV_MAT_DEPTH(flags), cn = CV_MAT_CN(flags);
        mv.resize(n);
        
        for( i = 0; i < n; i++ )
            mv[i] = Mat(1, cn, t, (void*)(&v[0] + esz*i));
        return;
    }
    
    if( k == NONE )
    {
        mv.clear();
        return;
    }
    
    if( k == STD_VECTOR_VECTOR )
    {
        const vector<vector<uchar> >& vv = *(const vector<vector<uchar> >*)obj;
1013
        int i, n = (int)vv.size();
1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033
        int t = CV_MAT_TYPE(flags);
        mv.resize(n);
        
        for( i = 0; i < n; i++ )
        {
            const vector<uchar>& v = vv[i];
            mv[i] = Mat(size(i), t, (void*)&v[0]);
        }
        return;
    }
    
    CV_Assert( k == STD_VECTOR_MAT );
    //if( k == STD_VECTOR_MAT )
    {
        const vector<Mat>& v = *(const vector<Mat>*)obj;
        mv.resize(v.size());
        std::copy(v.begin(), v.end(), mv.begin());
        return;
    }
}
1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069

GlBuffer _InputArray::getGlBuffer() const
{
    int k = kind();

    CV_Assert(k == OPENGL_BUFFER);
    //if( k == OPENGL_BUFFER )
    {
        const GlBuffer* buf = (const GlBuffer*)obj;
        return *buf;
    }
}

GlTexture _InputArray::getGlTexture() const
{
    int k = kind();

    CV_Assert(k == OPENGL_TEXTURE);
    //if( k == OPENGL_TEXTURE )
    {
        const GlTexture* tex = (const GlTexture*)obj;
        return *tex;
    }
}

gpu::GpuMat _InputArray::getGpuMat() const
{
    int k = kind();

    CV_Assert(k == GPU_MAT);
    //if( k == GPU_MAT )
    {
        const gpu::GpuMat* d_mat = (const gpu::GpuMat*)obj;
        return *d_mat;
    }
}
1070
    
1071
int _InputArray::kind() const
1072
{
1073
    return flags & KIND_MASK;
1074 1075
}
    
1076
Size _InputArray::size(int i) const
1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121
{
    int k = kind();
    
    if( k == MAT )
    {
        CV_Assert( i < 0 );
        return ((const Mat*)obj)->size();
    }
    
    if( k == EXPR )
    {
        CV_Assert( i < 0 );
        return ((const MatExpr*)obj)->size();
    }
    
    if( k == MATX )
    {
        CV_Assert( i < 0 );
        return sz;
    }
    
    if( k == STD_VECTOR )
    {
        CV_Assert( i < 0 );
        const vector<uchar>& v = *(const vector<uchar>*)obj;
        const vector<int>& iv = *(const vector<int>*)obj;
        size_t szb = v.size(), szi = iv.size();
        return szb == szi ? Size((int)szb, 1) : Size((int)(szb/CV_ELEM_SIZE(flags)), 1);
    }
    
    if( k == NONE )
        return Size();
    
    if( k == STD_VECTOR_VECTOR )
    {
        const vector<vector<uchar> >& vv = *(const vector<vector<uchar> >*)obj;
        if( i < 0 )
            return vv.empty() ? Size() : Size((int)vv.size(), 1);
        CV_Assert( i < (int)vv.size() );
        const vector<vector<int> >& ivv = *(const vector<vector<int> >*)obj;
        
        size_t szb = vv[i].size(), szi = ivv[i].size();
        return szb == szi ? Size((int)szb, 1) : Size((int)(szb/CV_ELEM_SIZE(flags)), 1);
    }
    
1122
    if( k == STD_VECTOR_MAT )
1123 1124 1125 1126 1127 1128 1129 1130
    {
        const vector<Mat>& vv = *(const vector<Mat>*)obj;
        if( i < 0 )
            return vv.empty() ? Size() : Size((int)vv.size(), 1);
        CV_Assert( i < (int)vv.size() );
        
        return vv[i].size();
    }
1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152

    if( k == OPENGL_BUFFER )
    {
        CV_Assert( i < 0 );
        const GlBuffer* buf = (const GlBuffer*)obj;
        return buf->size();
    }

    if( k == OPENGL_TEXTURE )
    {
        CV_Assert( i < 0 );
        const GlTexture* tex = (const GlTexture*)obj;
        return tex->size();
    }

    CV_Assert( k == GPU_MAT );
    //if( k == GPU_MAT )
    {
        CV_Assert( i < 0 );
        const gpu::GpuMat* d_mat = (const gpu::GpuMat*)obj;
        return d_mat->size();
    }
1153 1154
}

1155
size_t _InputArray::total(int i) const
1156 1157 1158 1159
{
    return size(i).area();
}
    
1160
int _InputArray::type(int i) const
1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175
{
    int k = kind();
    
    if( k == MAT )
        return ((const Mat*)obj)->type();
    
    if( k == EXPR )
        return ((const MatExpr*)obj)->type();
    
    if( k == MATX || k == STD_VECTOR || k == STD_VECTOR_VECTOR )
        return CV_MAT_TYPE(flags);
    
    if( k == NONE )
        return -1;
    
1176
    if( k == STD_VECTOR_MAT )
1177 1178 1179 1180 1181 1182
    {
        const vector<Mat>& vv = *(const vector<Mat>*)obj;
        CV_Assert( i < (int)vv.size() );
        
        return vv[i >= 0 ? i : 0].type();
    }
1183 1184 1185 1186 1187 1188 1189 1190 1191 1192
    
    if( k == OPENGL_BUFFER )
        return ((const GlBuffer*)obj)->type();
    
    if( k == OPENGL_TEXTURE )
        return ((const GlTexture*)obj)->type();
    
    CV_Assert( k == GPU_MAT );
    //if( k == GPU_MAT )
        return ((const gpu::GpuMat*)obj)->type();
1193 1194
}
    
1195
int _InputArray::depth(int i) const
1196 1197 1198 1199
{
    return CV_MAT_DEPTH(type(i));
}
    
1200
int _InputArray::channels(int i) const
1201 1202 1203 1204
{
    return CV_MAT_CN(type(i));
}
    
1205
bool _InputArray::empty() const
1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232
{
    int k = kind();
    
    if( k == MAT )
        return ((const Mat*)obj)->empty();
    
    if( k == EXPR )
        return false;
    
    if( k == MATX )
        return false;
    
    if( k == STD_VECTOR )
    {
        const vector<uchar>& v = *(const vector<uchar>*)obj;
        return v.empty();
    }
    
    if( k == NONE )
        return true;
    
    if( k == STD_VECTOR_VECTOR )
    {
        const vector<vector<uchar> >& vv = *(const vector<vector<uchar> >*)obj;
        return vv.empty();
    }
    
1233
    if( k == STD_VECTOR_MAT )
1234 1235 1236 1237
    {
        const vector<Mat>& vv = *(const vector<Mat>*)obj;
        return vv.empty();
    }
1238 1239 1240 1241 1242 1243 1244 1245 1246 1247
    
    if( k == OPENGL_BUFFER )
        return ((const GlBuffer*)obj)->empty();
    
    if( k == OPENGL_TEXTURE )
        return ((const GlTexture*)obj)->empty();
    
    CV_Assert( k == GPU_MAT );
    //if( k == GPU_MAT )
        return ((const gpu::GpuMat*)obj)->empty();
1248 1249 1250
}
    
    
1251 1252 1253
_OutputArray::_OutputArray() {}
_OutputArray::_OutputArray(Mat& m) : _InputArray(m) {}
_OutputArray::_OutputArray(vector<Mat>& vec) : _InputArray(vec) {}
1254 1255 1256 1257

_OutputArray::_OutputArray(const Mat& m) : _InputArray(m) {flags |= FIXED_SIZE|FIXED_TYPE;}
_OutputArray::_OutputArray(const vector<Mat>& vec) : _InputArray(vec) {flags |= FIXED_SIZE;}

1258
    
1259
bool _OutputArray::fixedSize() const
1260
{
1261
    return (flags & FIXED_SIZE) == FIXED_SIZE;
1262 1263
}

1264
bool _OutputArray::fixedType() const
1265
{
1266
    return (flags & FIXED_TYPE) == FIXED_TYPE;
1267 1268
}
    
1269
void _OutputArray::create(Size _sz, int type, int i, bool allowTransposed, int fixedDepthMask) const
1270 1271 1272 1273
{
    int k = kind();
    if( k == MAT && i < 0 && !allowTransposed && fixedDepthMask == 0 )
    {
1274 1275
        CV_Assert(!fixedSize() || ((Mat*)obj)->size.operator()() == _sz);
        CV_Assert(!fixedType() || ((Mat*)obj)->type() == type);
1276 1277 1278 1279 1280 1281 1282
        ((Mat*)obj)->create(_sz, type);
        return;
    }
    int sz[] = {_sz.height, _sz.width};
    create(2, sz, type, i, allowTransposed, fixedDepthMask);
}

1283
void _OutputArray::create(int rows, int cols, int type, int i, bool allowTransposed, int fixedDepthMask) const
1284 1285 1286 1287
{
    int k = kind();
    if( k == MAT && i < 0 && !allowTransposed && fixedDepthMask == 0 )
    {
1288 1289
        CV_Assert(!fixedSize() || ((Mat*)obj)->size.operator()() == Size(cols, rows));
        CV_Assert(!fixedType() || ((Mat*)obj)->type() == type);
1290 1291 1292 1293 1294 1295 1296
        ((Mat*)obj)->create(rows, cols, type);
        return;
    }
    int sz[] = {rows, cols};
    create(2, sz, type, i, allowTransposed, fixedDepthMask);
}
    
1297
void _OutputArray::create(int dims, const int* size, int type, int i, bool allowTransposed, int fixedDepthMask) const
1298 1299 1300 1301 1302 1303 1304 1305
{
    int k = kind();
    type = CV_MAT_TYPE(type);
    
    if( k == MAT )
    {
        CV_Assert( i < 0 );
        Mat& m = *(Mat*)obj;
1306
        if( allowTransposed )
1307 1308
        {
            if( !m.isContinuous() )
1309 1310
            {
                CV_Assert(!fixedType() && !fixedSize());
1311
                m.release();
1312
            }
1313 1314 1315 1316 1317
            
            if( dims == 2 && m.dims == 2 && m.data &&
                m.type() == type && m.rows == size[1] && m.cols == size[0] )
                return;
        }
1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331

        if(fixedType())
        {
            if(CV_MAT_CN(type) == m.channels() && ((1 << CV_MAT_TYPE(flags)) & fixedDepthMask) != 0 )
                type = m.type();
            else
                CV_Assert(!fixedType() || (CV_MAT_CN(type) == m.channels() && ((1 << CV_MAT_TYPE(flags)) & fixedDepthMask) != 0));
        }
        if(fixedSize())
        {
            CV_Assert(m.dims == dims);
            for(int j = 0; j < dims; ++j)
                CV_Assert(m.size[j] == size[j]);
        }
1332 1333 1334 1335 1336 1337 1338 1339 1340 1341
        m.create(dims, size, type);
        return;
    }
    
    if( k == MATX )
    {
        CV_Assert( i < 0 );
        int type0 = CV_MAT_TYPE(flags);
        CV_Assert( type == type0 || (CV_MAT_CN(type) == 1 && ((1 << type0) & fixedDepthMask) != 0) );
        CV_Assert( dims == 2 && ((size[0] == sz.height && size[1] == sz.width) ||
1342
                                 (allowTransposed && size[0] == sz.width && size[1] == sz.height)));
1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356
        return;
    }
    
    if( k == STD_VECTOR || k == STD_VECTOR_VECTOR )
    {
        CV_Assert( dims == 2 && (size[0] == 1 || size[1] == 1 || size[0]*size[1] == 0) );
        size_t len = size[0]*size[1] > 0 ? size[0] + size[1] - 1 : 0;
        vector<uchar>* v = (vector<uchar>*)obj;
        
        if( k == STD_VECTOR_VECTOR )
        {
            vector<vector<uchar> >& vv = *(vector<vector<uchar> >*)obj;
            if( i < 0 )
            {
1357
                CV_Assert(!fixedSize() || len == vv.size());
1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370
                vv.resize(len);
                return;
            }
            CV_Assert( i < (int)vv.size() );
            v = &vv[i];
        }
        else
            CV_Assert( i < 0 );
        
        int type0 = CV_MAT_TYPE(flags);
        CV_Assert( type == type0 || (CV_MAT_CN(type) == CV_MAT_CN(type0) && ((1 << type0) & fixedDepthMask) != 0) );
        
        int esz = CV_ELEM_SIZE(type0);
1371
        CV_Assert(!fixedSize() || len == ((vector<uchar>*)v)->size() / esz);
1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443
        switch( esz )
        {
        case 1:
            ((vector<uchar>*)v)->resize(len);
            break;
        case 2:
            ((vector<Vec2b>*)v)->resize(len);
            break;
        case 3:
            ((vector<Vec3b>*)v)->resize(len);
            break;
        case 4:
            ((vector<int>*)v)->resize(len);
            break;
        case 6:
            ((vector<Vec3s>*)v)->resize(len);
            break;
        case 8:
            ((vector<Vec2i>*)v)->resize(len);
            break;
        case 12:
            ((vector<Vec3i>*)v)->resize(len);
            break;
        case 16:
            ((vector<Vec4i>*)v)->resize(len);
            break;
        case 24:
            ((vector<Vec6i>*)v)->resize(len);
            break;
        case 32:
            ((vector<Vec8i>*)v)->resize(len);
            break;
        case 36:
            ((vector<Vec<int, 9> >*)v)->resize(len);
            break;
        case 48:
            ((vector<Vec<int, 12> >*)v)->resize(len);
            break;
        case 64:
            ((vector<Vec<int, 16> >*)v)->resize(len);
            break;
        case 128:
            ((vector<Vec<int, 32> >*)v)->resize(len);
            break;
        case 256:
            ((vector<Vec<int, 64> >*)v)->resize(len);
            break;
        case 512:
            ((vector<Vec<int, 128> >*)v)->resize(len);
            break;
        default:
            CV_Error_(CV_StsBadArg, ("Vectors with element size %d are not supported. Please, modify OutputArray::create()\n", esz));
        }
        return;
    }
    
    if( k == NONE )
    {
        CV_Error(CV_StsNullPtr, "create() called for the missing output array" ); 
        return;
    }
    
    CV_Assert( k == STD_VECTOR_MAT );
    //if( k == STD_VECTOR_MAT )
    {
        vector<Mat>& v = *(vector<Mat>*)obj;
        
        if( i < 0 )
        {
            CV_Assert( dims == 2 && (size[0] == 1 || size[1] == 1 || size[0]*size[1] == 0) );
            size_t len = size[0]*size[1] > 0 ? size[0] + size[1] - 1 : 0;
            
1444
            CV_Assert(!fixedSize() || len == v.size());
1445 1446 1447 1448 1449 1450 1451
            v.resize(len);
            return;
        }
        
        CV_Assert( i < (int)v.size() );
        Mat& m = v[i];
        
1452
        if( allowTransposed )
1453 1454
        {
            if( !m.isContinuous() )
1455 1456
            {
                CV_Assert(!fixedType() && !fixedSize());
1457
                m.release();
1458
            }
1459 1460 1461 1462 1463
            
            if( dims == 2 && m.dims == 2 && m.data &&
                m.type() == type && m.rows == size[1] && m.cols == size[0] )
                return;
        }
1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478

        if(fixedType())
        {
            if(CV_MAT_CN(type) == m.channels() && ((1 << CV_MAT_TYPE(flags)) & fixedDepthMask) != 0 )
                type = m.type();
            else
                CV_Assert(!fixedType() || (CV_MAT_CN(type) == m.channels() && ((1 << CV_MAT_TYPE(flags)) & fixedDepthMask) != 0));
        }
        if(fixedSize())
        {
            CV_Assert(m.dims == dims);
            for(int j = 0; j < dims; ++j)
                CV_Assert(m.size[j] == size[j]);
        }

1479 1480 1481
        m.create(dims, size, type);
    }
}
1482
    
1483
void _OutputArray::release() const
1484
{
1485 1486
    CV_Assert(!fixedSize());

1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516
    int k = kind();
    
    if( k == MAT )
    {
        ((Mat*)obj)->release();
        return;
    }
    
    if( k == NONE )
        return;
    
    if( k == STD_VECTOR )
    {
        create(Size(), CV_MAT_TYPE(flags));
        return;
    }
    
    if( k == STD_VECTOR_VECTOR )
    {
        ((vector<vector<uchar> >*)obj)->clear();
        return;
    }
    
    CV_Assert( k == STD_VECTOR_MAT );
    //if( k == STD_VECTOR_MAT )
    {
        ((vector<Mat>*)obj)->clear();
    }    
}

1517
void _OutputArray::clear() const
1518 1519 1520 1521 1522
{
    int k = kind();
    
    if( k == MAT )
    {
1523
        CV_Assert(!fixedSize());
1524 1525 1526 1527 1528 1529 1530
        ((Mat*)obj)->resize(0);
        return;
    }
    
    release();
}
    
1531
bool _OutputArray::needed() const
1532 1533 1534 1535
{
    return kind() != NONE;
}

1536
Mat& _OutputArray::getMatRef(int i) const
1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551
{
    int k = kind();
    if( i < 0 )
    {
        CV_Assert( k == MAT );
        return *(Mat*)obj;
    }
    else
    {
        CV_Assert( k == STD_VECTOR_MAT );
        vector<Mat>& v = *(vector<Mat>*)obj;
        CV_Assert( i < (int)v.size() );
        return v[i];
    }
}
1552 1553

static _OutputArray _none;
1554
OutputArray noArray() { return _none; }
1555 1556 1557
    
}

1558 1559 1560
/*************************************************************************************************\
                                        Matrix Operations
\*************************************************************************************************/
1561

1562
void cv::hconcat(const Mat* src, size_t nsrc, OutputArray _dst)
1563 1564 1565
{
    if( nsrc == 0 || !src )
    {
1566
        _dst.release();
1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578
        return;
    }
    
    int totalCols = 0, cols = 0;
    size_t i;
    for( i = 0; i < nsrc; i++ )
    {
        CV_Assert( !src[i].empty() && src[i].dims <= 2 &&
                   src[i].rows == src[0].rows &&
                   src[i].type() == src[0].type());
        totalCols += src[i].cols;
    }
1579 1580
    _dst.create( src[0].rows, totalCols, src[0].type());
    Mat dst = _dst.getMat();
1581 1582
    for( i = 0; i < nsrc; i++ )
    {
1583
        Mat dpart = dst(Rect(cols, 0, src[i].cols, src[i].rows));
1584 1585 1586 1587 1588
        src[i].copyTo(dpart);
        cols += src[i].cols;
    }
}
    
1589
void cv::hconcat(InputArray src1, InputArray src2, OutputArray dst)
1590
{
1591
    Mat src[] = {src1.getMat(), src2.getMat()};
1592 1593 1594
    hconcat(src, 2, dst);
}
    
1595
void cv::hconcat(InputArray _src, OutputArray dst)
1596
{
1597 1598
    vector<Mat> src;
    _src.getMatVector(src);
1599 1600 1601
    hconcat(!src.empty() ? &src[0] : 0, src.size(), dst);
}

1602
void cv::vconcat(const Mat* src, size_t nsrc, OutputArray _dst)
1603 1604 1605
{
    if( nsrc == 0 || !src )
    {
1606
        _dst.release();
1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618
        return;
    }
    
    int totalRows = 0, rows = 0;
    size_t i;
    for( i = 0; i < nsrc; i++ )
    {
        CV_Assert( !src[i].empty() && src[i].dims <= 2 &&
                  src[i].cols == src[0].cols &&
                  src[i].type() == src[0].type());
        totalRows += src[i].rows;
    }
1619 1620
    _dst.create( totalRows, src[0].cols, src[0].type());
    Mat dst = _dst.getMat();
1621 1622 1623 1624 1625 1626 1627 1628
    for( i = 0; i < nsrc; i++ )
    {
        Mat dpart(dst, Rect(0, rows, src[i].cols, src[i].rows));
        src[i].copyTo(dpart);
        rows += src[i].rows;
    }
}
    
1629
void cv::vconcat(InputArray src1, InputArray src2, OutputArray dst)
1630
{
1631
    Mat src[] = {src1.getMat(), src2.getMat()};
1632 1633 1634
    vconcat(src, 2, dst);
}        

1635
void cv::vconcat(InputArray _src, OutputArray dst)
1636
{
1637 1638
    vector<Mat> src;
    _src.getMatVector(src);
1639 1640 1641
    vconcat(!src.empty() ? &src[0] : 0, src.size(), dst);
}
    
1642
//////////////////////////////////////// set identity ////////////////////////////////////////////
1643
void cv::setIdentity( InputOutputArray _m, const Scalar& s )
1644
{
1645
    Mat m = _m.getMat();
V
Vadim Pisarevsky 已提交
1646
    CV_Assert( m.dims <= 2 );
1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681
    int i, j, rows = m.rows, cols = m.cols, type = m.type();
    
    if( type == CV_32FC1 )
    {
        float* data = (float*)m.data;
        float val = (float)s[0];
        size_t step = m.step/sizeof(data[0]);

        for( i = 0; i < rows; i++, data += step )
        {
            for( j = 0; j < cols; j++ )
                data[j] = 0;
            if( i < cols )
                data[i] = val;
        }
    }
    else if( type == CV_64FC1 )
    {
        double* data = (double*)m.data;
        double val = s[0];
        size_t step = m.step/sizeof(data[0]);

        for( i = 0; i < rows; i++, data += step )
        {
            for( j = 0; j < cols; j++ )
                data[j] = j == i ? val : 0;
        }
    }
    else
    {
        m = Scalar(0);
        m.diag() = s;
    }
}

1682 1683
//////////////////////////////////////////// trace ///////////////////////////////////////////    
    
1684
cv::Scalar cv::trace( InputArray _m )
1685
{
1686
    Mat m = _m.getMat();
V
Vadim Pisarevsky 已提交
1687
    CV_Assert( m.dims <= 2 );
1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713
    int i, type = m.type();
    int nm = std::min(m.rows, m.cols);
    
    if( type == CV_32FC1 )
    {
        const float* ptr = (const float*)m.data;
        size_t step = m.step/sizeof(ptr[0]) + 1;
        double _s = 0;
        for( i = 0; i < nm; i++ )
            _s += ptr[i*step];
        return _s;
    }
    
    if( type == CV_64FC1 )
    {
        const double* ptr = (const double*)m.data;
        size_t step = m.step/sizeof(ptr[0]) + 1;
        double _s = 0;
        for( i = 0; i < nm; i++ )
            _s += ptr[i*step];
        return _s;
    }
    
    return cv::sum(m.diag());
}

1714
////////////////////////////////////// transpose /////////////////////////////////////////
1715 1716 1717 1718

namespace cv
{

1719
template<typename T> static void
1720
transpose_( const uchar* src, size_t sstep, uchar* dst, size_t dstep, Size sz )
1721
{
V
Victoria Zhislina 已提交
1722 1723 1724 1725
    int i=0, j, m = sz.width, n = sz.height;

	#if CV_ENABLE_UNROLLED
    for(; i <= m - 4; i += 4 )
1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750
    {
        T* d0 = (T*)(dst + dstep*i);
        T* d1 = (T*)(dst + dstep*(i+1));
        T* d2 = (T*)(dst + dstep*(i+2));
        T* d3 = (T*)(dst + dstep*(i+3));
        
        for( j = 0; j <= n - 4; j += 4 )
        {
            const T* s0 = (const T*)(src + i*sizeof(T) + sstep*j);
            const T* s1 = (const T*)(src + i*sizeof(T) + sstep*(j+1));
            const T* s2 = (const T*)(src + i*sizeof(T) + sstep*(j+2));
            const T* s3 = (const T*)(src + i*sizeof(T) + sstep*(j+3));
            
            d0[j] = s0[0]; d0[j+1] = s1[0]; d0[j+2] = s2[0]; d0[j+3] = s3[0];
            d1[j] = s0[1]; d1[j+1] = s1[1]; d1[j+2] = s2[1]; d1[j+3] = s3[1];
            d2[j] = s0[2]; d2[j+1] = s1[2]; d2[j+2] = s2[2]; d2[j+3] = s3[2];
            d3[j] = s0[3]; d3[j+1] = s1[3]; d3[j+2] = s2[3]; d3[j+3] = s3[3];
        }
        
        for( ; j < n; j++ )
        {
            const T* s0 = (const T*)(src + i*sizeof(T) + j*sstep);
            d0[j] = s0[0]; d1[j] = s0[1]; d2[j] = s0[2]; d3[j] = s0[3];
        }
    }
V
Victoria Zhislina 已提交
1751
    #endif
1752 1753 1754
    for( ; i < m; i++ )
    {
        T* d0 = (T*)(dst + dstep*i);
V
Victoria Zhislina 已提交
1755 1756 1757
        j = 0;
		#if CV_ENABLE_UNROLLED
        for(; j <= n - 4; j += 4 )
1758 1759 1760 1761 1762 1763 1764 1765
        {
            const T* s0 = (const T*)(src + i*sizeof(T) + sstep*j);
            const T* s1 = (const T*)(src + i*sizeof(T) + sstep*(j+1));
            const T* s2 = (const T*)(src + i*sizeof(T) + sstep*(j+2));
            const T* s3 = (const T*)(src + i*sizeof(T) + sstep*(j+3));
            
            d0[j] = s0[0]; d0[j+1] = s1[0]; d0[j+2] = s2[0]; d0[j+3] = s3[0];
        }
V
Victoria Zhislina 已提交
1766
        #endif
1767 1768 1769 1770 1771 1772 1773
        for( ; j < n; j++ )
        {
            const T* s0 = (const T*)(src + i*sizeof(T) + j*sstep);
            d0[j] = s0[0];
        }
    }
}
1774

1775 1776 1777 1778 1779
template<typename T> static void
transposeI_( uchar* data, size_t step, int n )
{
    int i, j;
    for( i = 0; i < n; i++ )
1780 1781 1782
    {
        T* row = (T*)(data + step*i);
        uchar* data1 = data + i*sizeof(T);
1783
        for( j = i+1; j < n; j++ )
1784 1785 1786
            std::swap( row[j], *(T*)(data1 + step*j) );
    }
}
1787 1788 1789 1790 1791 1792 1793 1794 1795 1796
    
typedef void (*TransposeFunc)( const uchar* src, size_t sstep, uchar* dst, size_t dstep, Size sz );
typedef void (*TransposeInplaceFunc)( uchar* data, size_t step, int n );
    
#define DEF_TRANSPOSE_FUNC(suffix, type) \
static void transpose_##suffix( const uchar* src, size_t sstep, uchar* dst, size_t dstep, Size sz ) \
{ transpose_<type>(src, sstep, dst, dstep, sz); } \
\
static void transposeI_##suffix( uchar* data, size_t step, int n ) \
{ transposeI_<type>(data, step, n); }
1797

1798 1799 1800 1801 1802 1803 1804 1805 1806 1807
DEF_TRANSPOSE_FUNC(8u, uchar)
DEF_TRANSPOSE_FUNC(16u, ushort)
DEF_TRANSPOSE_FUNC(8uC3, Vec3b)
DEF_TRANSPOSE_FUNC(32s, int)
DEF_TRANSPOSE_FUNC(16uC3, Vec3s)
DEF_TRANSPOSE_FUNC(32sC2, Vec2i)
DEF_TRANSPOSE_FUNC(32sC3, Vec3i)
DEF_TRANSPOSE_FUNC(32sC4, Vec4i)
DEF_TRANSPOSE_FUNC(32sC6, Vec6i)
DEF_TRANSPOSE_FUNC(32sC8, Vec8i)
1808

1809 1810 1811 1812 1813 1814
static TransposeFunc transposeTab[] =
{
    0, transpose_8u, transpose_16u, transpose_8uC3, transpose_32s, 0, transpose_16uC3, 0,
    transpose_32sC2, 0, 0, 0, transpose_32sC3, 0, 0, 0, transpose_32sC4,
    0, 0, 0, 0, 0, 0, 0, transpose_32sC6, 0, 0, 0, 0, 0, 0, 0, transpose_32sC8
};
1815

1816 1817 1818 1819 1820 1821
static TransposeInplaceFunc transposeInplaceTab[] =
{
    0, transposeI_8u, transposeI_16u, transposeI_8uC3, transposeI_32s, 0, transposeI_16uC3, 0,
    transposeI_32sC2, 0, 0, 0, transposeI_32sC3, 0, 0, 0, transposeI_32sC4,
    0, 0, 0, 0, 0, 0, 0, transposeI_32sC6, 0, 0, 0, 0, 0, 0, 0, transposeI_32sC8
};
1822

1823 1824
}
    
1825
void cv::transpose( InputArray _src, OutputArray _dst )
1826 1827
{
    Mat src = _src.getMat();
1828
    size_t esz = src.elemSize();
V
Vadim Pisarevsky 已提交
1829
    CV_Assert( src.dims <= 2 && esz <= (size_t)32 );
1830

1831 1832 1833 1834
    _dst.create(src.cols, src.rows, src.type());
    Mat dst = _dst.getMat();
    
    if( dst.data == src.data )
1835
    {
1836
        TransposeInplaceFunc func = transposeInplaceTab[esz];
1837
        CV_Assert( func != 0 );
1838
        func( dst.data, dst.step, dst.rows );
1839 1840 1841
    }
    else
    {
1842
        TransposeFunc func = transposeTab[esz];
1843
        CV_Assert( func != 0 );
1844
        func( src.data, src.step, dst.data, dst.step, src.size() );
1845 1846 1847 1848
    }
}


1849
void cv::completeSymm( InputOutputArray _m, bool LtoR )
1850
{
1851
    Mat m = _m.getMat();
V
Vadim Pisarevsky 已提交
1852 1853 1854
    CV_Assert( m.dims <= 2 );
    
    int i, j, nrows = m.rows, type = m.type();
1855
    int j0 = 0, j1 = nrows;
V
Vadim Pisarevsky 已提交
1856
    CV_Assert( m.rows == m.cols );
1857 1858 1859

    if( type == CV_32FC1 || type == CV_32SC1 )
    {
V
Vadim Pisarevsky 已提交
1860 1861
        int* data = (int*)m.data;
        size_t step = m.step/sizeof(data[0]);
1862 1863 1864 1865 1866 1867 1868 1869 1870
        for( i = 0; i < nrows; i++ )
        {
            if( !LtoR ) j1 = i; else j0 = i+1;
            for( j = j0; j < j1; j++ )
                data[i*step + j] = data[j*step + i];
        }
    }
    else if( type == CV_64FC1 )
    {
V
Vadim Pisarevsky 已提交
1871 1872
        double* data = (double*)m.data;
        size_t step = m.step/sizeof(data[0]);
1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883
        for( i = 0; i < nrows; i++ )
        {
            if( !LtoR ) j1 = i; else j0 = i+1;
            for( j = j0; j < j1; j++ )
                data[i*step + j] = data[j*step + i];
        }
    }
    else
        CV_Error( CV_StsUnsupportedFormat, "" );
}

V
Vadim Pisarevsky 已提交
1884
    
1885
cv::Mat cv::Mat::cross(InputArray _m) const
1886
{
1887
    Mat m = _m.getMat();
1888
    int t = type(), d = CV_MAT_DEPTH(t);
V
Vadim Pisarevsky 已提交
1889
    CV_Assert( dims <= 2 && m.dims <= 2 && size() == m.size() && t == m.type() &&
1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919
        ((rows == 3 && cols == 1) || (cols*channels() == 3 && rows == 1)));
    Mat result(rows, cols, t);

    if( d == CV_32F )
    {
        const float *a = (const float*)data, *b = (const float*)m.data;
        float* c = (float*)result.data;
        size_t lda = rows > 1 ? step/sizeof(a[0]) : 1;
        size_t ldb = rows > 1 ? m.step/sizeof(b[0]) : 1;

        c[0] = a[lda] * b[ldb*2] - a[lda*2] * b[ldb];
        c[1] = a[lda*2] * b[0] - a[0] * b[ldb*2];
        c[2] = a[0] * b[ldb] - a[lda] * b[0];
    }
    else if( d == CV_64F )
    {
        const double *a = (const double*)data, *b = (const double*)m.data;
        double* c = (double*)result.data;
        size_t lda = rows > 1 ? step/sizeof(a[0]) : 1;
        size_t ldb = rows > 1 ? m.step/sizeof(b[0]) : 1;

        c[0] = a[lda] * b[ldb*2] - a[lda*2] * b[ldb];
        c[1] = a[lda*2] * b[0] - a[0] * b[ldb*2];
        c[2] = a[0] * b[ldb] - a[lda] * b[0];
    }

    return result;
}


1920
////////////////////////////////////////// reduce ////////////////////////////////////////////
1921

1922 1923 1924
namespace cv
{

1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944
template<typename T, typename ST, class Op> static void
reduceR_( const Mat& srcmat, Mat& dstmat )
{
    typedef typename Op::rtype WT;
    Size size = srcmat.size();
    size.width *= srcmat.channels();
    AutoBuffer<WT> buffer(size.width);
    WT* buf = buffer;
    ST* dst = (ST*)dstmat.data;
    const T* src = (const T*)srcmat.data;
    size_t srcstep = srcmat.step/sizeof(src[0]);
    int i;
    Op op;

    for( i = 0; i < size.width; i++ )
        buf[i] = src[i];

    for( ; --size.height; )
    {
        src += srcstep;
V
Victoria Zhislina 已提交
1945 1946 1947
        i = 0;
		#if CV_ENABLE_UNROLLED
        for(; i <= size.width - 4; i += 4 )
1948 1949 1950 1951 1952 1953 1954 1955 1956 1957
        {
            WT s0, s1;
            s0 = op(buf[i], (WT)src[i]);
            s1 = op(buf[i+1], (WT)src[i+1]);
            buf[i] = s0; buf[i+1] = s1;

            s0 = op(buf[i+2], (WT)src[i+2]);
            s1 = op(buf[i+3], (WT)src[i+3]);
            buf[i+2] = s0; buf[i+3] = s1;
        }
V
Victoria Zhislina 已提交
1958
        #endif
1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998
        for( ; i < size.width; i++ )
            buf[i] = op(buf[i], (WT)src[i]);
    }

    for( i = 0; i < size.width; i++ )
        dst[i] = (ST)buf[i];
}


template<typename T, typename ST, class Op> static void
reduceC_( const Mat& srcmat, Mat& dstmat )
{
    typedef typename Op::rtype WT;
    Size size = srcmat.size();
    int i, k, cn = srcmat.channels();
    size.width *= cn;
    Op op;

    for( int y = 0; y < size.height; y++ )
    {
        const T* src = (const T*)(srcmat.data + srcmat.step*y);
        ST* dst = (ST*)(dstmat.data + dstmat.step*y);
        if( size.width == cn )
            for( k = 0; k < cn; k++ )
                dst[k] = src[k];
        else
        {
            for( k = 0; k < cn; k++ )
            {
                WT a0 = src[k], a1 = src[k+cn];
                for( i = 2*cn; i <= size.width - 4*cn; i += 4*cn )
                {
                    a0 = op(a0, (WT)src[i+k]);
                    a1 = op(a1, (WT)src[i+k+cn]);
                    a0 = op(a0, (WT)src[i+k+cn*2]);
                    a1 = op(a1, (WT)src[i+k+cn*3]);
                }

                for( ; i < size.width; i += cn )
                {
1999
                    a0 = op(a0, (WT)src[i+k]);
2000 2001
                }
                a0 = op(a0, a1);
2002
              dst[k] = (ST)a0;
2003 2004
            }
        }
2005
	}
2006 2007 2008 2009
}

typedef void (*ReduceFunc)( const Mat& src, Mat& dst );

2010
}
2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057

#define reduceSumR8u32s  reduceR_<uchar, int,   OpAdd<int> >
#define reduceSumR8u32f  reduceR_<uchar, float, OpAdd<int> >
#define reduceSumR8u64f  reduceR_<uchar, double,OpAdd<int> >
#define reduceSumR16u32f reduceR_<ushort,float, OpAdd<float> >
#define reduceSumR16u64f reduceR_<ushort,double,OpAdd<double> >
#define reduceSumR16s32f reduceR_<short, float, OpAdd<float> >
#define reduceSumR16s64f reduceR_<short, double,OpAdd<double> >
#define reduceSumR32f32f reduceR_<float, float, OpAdd<float> >
#define reduceSumR32f64f reduceR_<float, double,OpAdd<double> >
#define reduceSumR64f64f reduceR_<double,double,OpAdd<double> >

#define reduceMaxR8u  reduceR_<uchar, uchar, OpMax<uchar> >
#define reduceMaxR16u reduceR_<ushort,ushort,OpMax<ushort> >
#define reduceMaxR16s reduceR_<short, short, OpMax<short> >
#define reduceMaxR32f reduceR_<float, float, OpMax<float> >
#define reduceMaxR64f reduceR_<double,double,OpMax<double> >

#define reduceMinR8u  reduceR_<uchar, uchar, OpMin<uchar> >
#define reduceMinR16u reduceR_<ushort,ushort,OpMin<ushort> >
#define reduceMinR16s reduceR_<short, short, OpMin<short> >
#define reduceMinR32f reduceR_<float, float, OpMin<float> >
#define reduceMinR64f reduceR_<double,double,OpMin<double> >

#define reduceSumC8u32s  reduceC_<uchar, int,   OpAdd<int> >
#define reduceSumC8u32f  reduceC_<uchar, float, OpAdd<int> >
#define reduceSumC8u64f  reduceC_<uchar, double,OpAdd<int> >
#define reduceSumC16u32f reduceC_<ushort,float, OpAdd<float> >
#define reduceSumC16u64f reduceC_<ushort,double,OpAdd<double> >
#define reduceSumC16s32f reduceC_<short, float, OpAdd<float> >
#define reduceSumC16s64f reduceC_<short, double,OpAdd<double> >
#define reduceSumC32f32f reduceC_<float, float, OpAdd<float> >
#define reduceSumC32f64f reduceC_<float, double,OpAdd<double> >
#define reduceSumC64f64f reduceC_<double,double,OpAdd<double> >

#define reduceMaxC8u  reduceC_<uchar, uchar, OpMax<uchar> >
#define reduceMaxC16u reduceC_<ushort,ushort,OpMax<ushort> >
#define reduceMaxC16s reduceC_<short, short, OpMax<short> >
#define reduceMaxC32f reduceC_<float, float, OpMax<float> >
#define reduceMaxC64f reduceC_<double,double,OpMax<double> >

#define reduceMinC8u  reduceC_<uchar, uchar, OpMin<uchar> >
#define reduceMinC16u reduceC_<ushort,ushort,OpMin<ushort> >
#define reduceMinC16s reduceC_<short, short, OpMin<short> >
#define reduceMinC32f reduceC_<float, float, OpMin<float> >
#define reduceMinC64f reduceC_<double,double,OpMin<double> >

2058
void cv::reduce(InputArray _src, OutputArray _dst, int dim, int op, int dtype)
2059
{
2060
    Mat src = _src.getMat();
V
Vadim Pisarevsky 已提交
2061
    CV_Assert( src.dims <= 2 );
2062
    int op0 = op;
2063
    int stype = src.type(), sdepth = src.depth(), cn = src.channels();
2064
    if( dtype < 0 )
2065
        dtype = _dst.fixedType() ? _dst.type() : stype;
2066 2067
    int ddepth = CV_MAT_DEPTH(dtype);

2068 2069 2070
    _dst.create(dim == 0 ? 1 : src.rows, dim == 0 ? src.cols : 1,
                CV_MAKETYPE(dtype >= 0 ? dtype : stype, cn));
    Mat dst = _dst.getMat(), temp = dst;
2071 2072
    
    CV_Assert( op == CV_REDUCE_SUM || op == CV_REDUCE_MAX ||
2073
               op == CV_REDUCE_MIN || op == CV_REDUCE_AVG );
2074 2075 2076 2077 2078 2079
    CV_Assert( src.channels() == dst.channels() );

    if( op == CV_REDUCE_AVG )
    {
        op = CV_REDUCE_SUM;
        if( sdepth < CV_32S && ddepth < CV_32S )
2080
        {
2081
            temp.create(dst.rows, dst.cols, CV_32SC(cn));
2082 2083
            ddepth = CV_32S;
        }
2084 2085 2086 2087 2088 2089 2090
    }

    ReduceFunc func = 0;
    if( dim == 0 )
    {
        if( op == CV_REDUCE_SUM )
        {
2091
            if(sdepth == CV_8U && ddepth == CV_32S)
2092
                func = GET_OPTIMIZED(reduceSumR8u32s);
2093
            else if(sdepth == CV_8U && ddepth == CV_32F)
2094
                func = reduceSumR8u32f;
2095
            else if(sdepth == CV_8U && ddepth == CV_64F)
2096
                func = reduceSumR8u64f;
2097
            else if(sdepth == CV_16U && ddepth == CV_32F)
2098
                func = reduceSumR16u32f;
2099
            else if(sdepth == CV_16U && ddepth == CV_64F)
2100
                func = reduceSumR16u64f;
2101
            else if(sdepth == CV_16S && ddepth == CV_32F)
2102
                func = reduceSumR16s32f;
2103
            else if(sdepth == CV_16S && ddepth == CV_64F)
2104 2105 2106
                func = reduceSumR16s64f;
            else if(sdepth == CV_32F && ddepth == CV_32F)
                func = GET_OPTIMIZED(reduceSumR32f32f);
2107
            else if(sdepth == CV_32F && ddepth == CV_64F)
2108
                func = reduceSumR32f64f;
2109
            else if(sdepth == CV_64F && ddepth == CV_64F)
2110
                func = reduceSumR64f64f;
2111 2112 2113
        }
        else if(op == CV_REDUCE_MAX)
        {
2114
            if(sdepth == CV_8U && ddepth == CV_8U)
2115 2116 2117
                func = GET_OPTIMIZED(reduceMaxR8u);
            else if(sdepth == CV_16U && ddepth == CV_16U)
                func = reduceMaxR16u;
2118
            else if(sdepth == CV_16S && ddepth == CV_16S)
2119
                func = reduceMaxR16s;
2120
            else if(sdepth == CV_32F && ddepth == CV_32F)
2121 2122 2123
                func = GET_OPTIMIZED(reduceMaxR32f);
            else if(sdepth == CV_64F && ddepth == CV_64F)
                func = reduceMaxR64f;
2124 2125 2126
        }
        else if(op == CV_REDUCE_MIN)
        {
2127
            if(sdepth == CV_8U && ddepth == CV_8U)
2128
                func = GET_OPTIMIZED(reduceMinR8u);
2129
            else if(sdepth == CV_16U && ddepth == CV_16U)
2130
                func = reduceMinR16u;
2131
            else if(sdepth == CV_16S && ddepth == CV_16S)
2132
                func = reduceMinR16s;
2133
            else if(sdepth == CV_32F && ddepth == CV_32F)
2134
                func = GET_OPTIMIZED(reduceMinR32f);
2135
            else if(sdepth == CV_64F && ddepth == CV_64F)
2136
                func = reduceMinR64f;
2137 2138 2139 2140 2141 2142
        }
    }
    else
    {
        if(op == CV_REDUCE_SUM)
        {
2143
            if(sdepth == CV_8U && ddepth == CV_32S)
2144
                func = GET_OPTIMIZED(reduceSumC8u32s);
2145
            else if(sdepth == CV_8U && ddepth == CV_32F)
2146
                func = reduceSumC8u32f;
2147
            else if(sdepth == CV_8U && ddepth == CV_64F)
2148
                func = reduceSumC8u64f;
2149
            else if(sdepth == CV_16U && ddepth == CV_32F)
2150
                func = reduceSumC16u32f;
2151
            else if(sdepth == CV_16U && ddepth == CV_64F)
2152
                func = reduceSumC16u64f;
2153
            else if(sdepth == CV_16S && ddepth == CV_32F)
2154
                func = reduceSumC16s32f;
2155
            else if(sdepth == CV_16S && ddepth == CV_64F)
2156 2157 2158
                func = reduceSumC16s64f;
            else if(sdepth == CV_32F && ddepth == CV_32F)
                func = GET_OPTIMIZED(reduceSumC32f32f);
2159
            else if(sdepth == CV_32F && ddepth == CV_64F)
2160
                func = reduceSumC32f64f;
2161
            else if(sdepth == CV_64F && ddepth == CV_64F)
2162
                func = reduceSumC64f64f;
2163 2164 2165
        }
        else if(op == CV_REDUCE_MAX)
        {
2166
            if(sdepth == CV_8U && ddepth == CV_8U)
2167 2168 2169
                func = GET_OPTIMIZED(reduceMaxC8u);
            else if(sdepth == CV_16U && ddepth == CV_16U)
                func = reduceMaxC16u;
2170
            else if(sdepth == CV_16S && ddepth == CV_16S)
2171
                func = reduceMaxC16s;
2172
            else if(sdepth == CV_32F && ddepth == CV_32F)
2173
                func = GET_OPTIMIZED(reduceMaxC32f);
2174
            else if(sdepth == CV_64F && ddepth == CV_64F)
2175
                func = reduceMaxC64f;
2176 2177 2178
        }
        else if(op == CV_REDUCE_MIN)
        {
2179
            if(sdepth == CV_8U && ddepth == CV_8U)
2180
                func = GET_OPTIMIZED(reduceMinC8u);
2181
            else if(sdepth == CV_16U && ddepth == CV_16U)
2182
                func = reduceMinC16u;
2183
            else if(sdepth == CV_16S && ddepth == CV_16S)
2184
                func = reduceMinC16s;
2185
            else if(sdepth == CV_32F && ddepth == CV_32F)
2186
                func = GET_OPTIMIZED(reduceMinC32f);
2187
            else if(sdepth == CV_64F && ddepth == CV_64F)
2188
                func = reduceMinC64f;
2189 2190 2191 2192 2193
        }
    }

    if( !func )
        CV_Error( CV_StsUnsupportedFormat,
2194
                  "Unsupported combination of input and output array formats" );
2195 2196 2197

    func( src, temp );

2198
    if( op0 == CV_REDUCE_AVG )
2199
        temp.convertTo(dst, dst.type(), 1./(dim == 0 ? src.rows : src.cols));
2200
}
2201
	
2202 2203
    
//////////////////////////////////////// sort ///////////////////////////////////////////
2204

2205 2206 2207
namespace cv
{

2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307
template<typename T> static void sort_( const Mat& src, Mat& dst, int flags )
{
    AutoBuffer<T> buf;
    T* bptr;
    int i, j, n, len;
    bool sortRows = (flags & 1) == CV_SORT_EVERY_ROW;
    bool inplace = src.data == dst.data;
    bool sortDescending = (flags & CV_SORT_DESCENDING) != 0;
    
    if( sortRows )
        n = src.rows, len = src.cols;
    else
    {
        n = src.cols, len = src.rows;
        buf.allocate(len);
    }
    bptr = (T*)buf;

    for( i = 0; i < n; i++ )
    {
        T* ptr = bptr;
        if( sortRows )
        {
            T* dptr = (T*)(dst.data + dst.step*i);
            if( !inplace )
            {
                const T* sptr = (const T*)(src.data + src.step*i);
                for( j = 0; j < len; j++ )
                    dptr[j] = sptr[j];
            }
            ptr = dptr;
        }
        else
        {
            for( j = 0; j < len; j++ )
                ptr[j] = ((const T*)(src.data + src.step*j))[i];
        }
        std::sort( ptr, ptr + len, LessThan<T>() );
        if( sortDescending )
            for( j = 0; j < len/2; j++ )
                std::swap(ptr[j], ptr[len-1-j]);
        if( !sortRows )
            for( j = 0; j < len; j++ )
                ((T*)(dst.data + dst.step*j))[i] = ptr[j];
    }
}


template<typename T> static void sortIdx_( const Mat& src, Mat& dst, int flags )
{
    AutoBuffer<T> buf;
    AutoBuffer<int> ibuf;
    T* bptr;
    int* _iptr;
    int i, j, n, len;
    bool sortRows = (flags & 1) == CV_SORT_EVERY_ROW;
    bool sortDescending = (flags & CV_SORT_DESCENDING) != 0;

    CV_Assert( src.data != dst.data );
    
    if( sortRows )
        n = src.rows, len = src.cols;
    else
    {
        n = src.cols, len = src.rows;
        buf.allocate(len);
        ibuf.allocate(len);
    }
    bptr = (T*)buf;
    _iptr = (int*)ibuf;

    for( i = 0; i < n; i++ )
    {
        T* ptr = bptr;
        int* iptr = _iptr;

        if( sortRows )
        {
            ptr = (T*)(src.data + src.step*i);
            iptr = (int*)(dst.data + dst.step*i);
        }
        else
        {
            for( j = 0; j < len; j++ )
                ptr[j] = ((const T*)(src.data + src.step*j))[i];
        }
        for( j = 0; j < len; j++ )
            iptr[j] = j;
        std::sort( iptr, iptr + len, LessThanIdx<T>(ptr) );
        if( sortDescending )
            for( j = 0; j < len/2; j++ )
                std::swap(iptr[j], iptr[len-1-j]);
        if( !sortRows )
            for( j = 0; j < len; j++ )
                ((int*)(dst.data + dst.step*j))[i] = iptr[j];
    }
}

typedef void (*SortFunc)(const Mat& src, Mat& dst, int flags);

2308 2309
}
    
2310
void cv::sort( InputArray _src, OutputArray _dst, int flags )
2311 2312 2313 2314 2315 2316
{
    static SortFunc tab[] =
    {
        sort_<uchar>, sort_<schar>, sort_<ushort>, sort_<short>,
        sort_<int>, sort_<float>, sort_<double>, 0
    };
2317
    Mat src = _src.getMat();
2318
    SortFunc func = tab[src.depth()];
V
Vadim Pisarevsky 已提交
2319
    CV_Assert( src.dims <= 2 && src.channels() == 1 && func != 0 );
2320 2321
    _dst.create( src.size(), src.type() );
    Mat dst = _dst.getMat();
2322 2323 2324
    func( src, dst, flags );
}

2325
void cv::sortIdx( InputArray _src, OutputArray _dst, int flags )
2326 2327 2328 2329 2330 2331
{
    static SortFunc tab[] =
    {
        sortIdx_<uchar>, sortIdx_<schar>, sortIdx_<ushort>, sortIdx_<short>,
        sortIdx_<int>, sortIdx_<float>, sortIdx_<double>, 0
    };
2332
    Mat src = _src.getMat();
2333
    SortFunc func = tab[src.depth()];
V
Vadim Pisarevsky 已提交
2334
    CV_Assert( src.dims <= 2 && src.channels() == 1 && func != 0 );
2335 2336
    
    Mat dst = _dst.getMat();
2337
    if( dst.data == src.data )
2338 2339 2340
        _dst.release();
    _dst.create( src.size(), CV_32S );
    dst = _dst.getMat();
2341 2342
    func( src, dst, flags );
}
2343 2344 2345
    
    
////////////////////////////////////////// kmeans ////////////////////////////////////////////
2346 2347 2348 2349

namespace cv
{

2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367
static void generateRandomCenter(const vector<Vec2f>& box, float* center, RNG& rng)
{
    size_t j, dims = box.size();
    float margin = 1.f/dims;
    for( j = 0; j < dims; j++ )
        center[j] = ((float)rng*(1.f+margin*2.f)-margin)*(box[j][1] - box[j][0]) + box[j][0];
}


/*
k-means center initialization using the following algorithm:
Arthur & Vassilvitskii (2007) k-means++: The Advantages of Careful Seeding
*/
static void generateCentersPP(const Mat& _data, Mat& _out_centers,
                              int K, RNG& rng, int trials)
{
    int i, j, k, dims = _data.cols, N = _data.rows;
    const float* data = _data.ptr<float>(0);
2368
    size_t step = _data.step/sizeof(data[0]);
2369 2370 2371 2372 2373 2374 2375 2376 2377 2378
    vector<int> _centers(K);
    int* centers = &_centers[0];
    vector<float> _dist(N*3);
    float* dist = &_dist[0], *tdist = dist + N, *tdist2 = tdist + N;
    double sum0 = 0;

    centers[0] = (unsigned)rng % N;

    for( i = 0; i < N; i++ )
    {
2379
        dist[i] = normL2Sqr_(data + step*i, data + step*centers[0], dims);
2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396
        sum0 += dist[i];
    }
    
    for( k = 1; k < K; k++ )
    {
        double bestSum = DBL_MAX;
        int bestCenter = -1;

        for( j = 0; j < trials; j++ )
        {
            double p = (double)rng*sum0, s = 0;
            for( i = 0; i < N-1; i++ )
                if( (p -= dist[i]) <= 0 )
                    break;
            int ci = i;
            for( i = 0; i < N; i++ )
            {
2397
                tdist2[i] = std::min(normL2Sqr_(data + step*i, data + step*ci, dims), dist[i]);
2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421
                s += tdist2[i];
            }
            
            if( s < bestSum )
            {
                bestSum = s;
                bestCenter = ci;
                std::swap(tdist, tdist2);
            }
        }
        centers[k] = bestCenter;
        sum0 = bestSum;
        std::swap(dist, tdist);
    }

    for( k = 0; k < K; k++ )
    {
        const float* src = data + step*centers[k];
        float* dst = _out_centers.ptr<float>(k);
        for( j = 0; j < dims; j++ )
            dst[j] = src[j];
    }
}

2422 2423
}
    
2424
double cv::kmeans( InputArray _data, int K,
2425 2426 2427
                   InputOutputArray _bestLabels,
                   TermCriteria criteria, int attempts,
                   int flags, OutputArray _centers )
2428 2429
{
    const int SPP_TRIALS = 3;
2430
    Mat data = _data.getMat();
2431 2432 2433 2434 2435
    int N = data.rows > 1 ? data.rows : data.cols;
    int dims = (data.rows > 1 ? data.cols : 1)*data.channels();
    int type = data.depth();

    attempts = std::max(attempts, 1);
V
Vadim Pisarevsky 已提交
2436
    CV_Assert( data.dims <= 2 && type == CV_32F && K > 0 );
2437
    CV_Assert( N >= K );
2438

2439 2440 2441
    _bestLabels.create(N, 1, CV_32S, -1, true);
    
    Mat _labels, best_labels = _bestLabels.getMat();
2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536
    if( flags & CV_KMEANS_USE_INITIAL_LABELS )
    {
        CV_Assert( (best_labels.cols == 1 || best_labels.rows == 1) &&
                  best_labels.cols*best_labels.rows == N &&
                  best_labels.type() == CV_32S &&
                  best_labels.isContinuous());
        best_labels.copyTo(_labels);
    }
    else
    {
        if( !((best_labels.cols == 1 || best_labels.rows == 1) &&
             best_labels.cols*best_labels.rows == N &&
            best_labels.type() == CV_32S &&
            best_labels.isContinuous()))
            best_labels.create(N, 1, CV_32S);
        _labels.create(best_labels.size(), best_labels.type());
    }
    int* labels = _labels.ptr<int>();

    Mat centers(K, dims, type), old_centers(K, dims, type);
    vector<int> counters(K);
    vector<Vec2f> _box(dims);
    Vec2f* box = &_box[0];

    double best_compactness = DBL_MAX, compactness = 0;
    RNG& rng = theRNG();
    int a, iter, i, j, k;

    if( criteria.type & TermCriteria::EPS )
        criteria.epsilon = std::max(criteria.epsilon, 0.);
    else
        criteria.epsilon = FLT_EPSILON;
    criteria.epsilon *= criteria.epsilon;

    if( criteria.type & TermCriteria::COUNT )
        criteria.maxCount = std::min(std::max(criteria.maxCount, 2), 100);
    else
        criteria.maxCount = 100;

    if( K == 1 )
    {
        attempts = 1;
        criteria.maxCount = 2;
    }

    const float* sample = data.ptr<float>(0);
    for( j = 0; j < dims; j++ )
        box[j] = Vec2f(sample[j], sample[j]);

    for( i = 1; i < N; i++ )
    {
        sample = data.ptr<float>(i);
        for( j = 0; j < dims; j++ )
        {
            float v = sample[j];
            box[j][0] = std::min(box[j][0], v);
            box[j][1] = std::max(box[j][1], v);
        }
    }

    for( a = 0; a < attempts; a++ )
    {
        double max_center_shift = DBL_MAX;
        for( iter = 0; iter < criteria.maxCount && max_center_shift > criteria.epsilon; iter++ )
        {
            swap(centers, old_centers);

            if( iter == 0 && (a > 0 || !(flags & KMEANS_USE_INITIAL_LABELS)) )
            {
                if( flags & KMEANS_PP_CENTERS )
                    generateCentersPP(data, centers, K, rng, SPP_TRIALS);
                else
                {
                    for( k = 0; k < K; k++ )
                        generateRandomCenter(_box, centers.ptr<float>(k), rng);
                }
            }
            else
            {
                if( iter == 0 && a == 0 && (flags & KMEANS_USE_INITIAL_LABELS) )
                {
                    for( i = 0; i < N; i++ )
                        CV_Assert( (unsigned)labels[i] < (unsigned)K );
                }
            
                // compute centers
                centers = Scalar(0);
                for( k = 0; k < K; k++ )
                    counters[k] = 0;

                for( i = 0; i < N; i++ )
                {
                    sample = data.ptr<float>(i);
                    k = labels[i];
                    float* center = centers.ptr<float>(k);
V
Victoria Zhislina 已提交
2537 2538 2539
					j=0;
					#if CV_ENABLE_UNROLLED
                    for(; j <= dims - 4; j += 4 )
2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552
                    {
                        float t0 = center[j] + sample[j];
                        float t1 = center[j+1] + sample[j+1];

                        center[j] = t0;
                        center[j+1] = t1;

                        t0 = center[j+2] + sample[j+2];
                        t1 = center[j+3] + sample[j+3];

                        center[j+2] = t0;
                        center[j+3] = t1;
                    }
V
Victoria Zhislina 已提交
2553
                    #endif
2554 2555 2556 2557 2558 2559 2560
                    for( ; j < dims; j++ )
                        center[j] += sample[j];
                    counters[k]++;
                }

                if( iter > 0 )
                    max_center_shift = 0;
2561
                
2562 2563 2564
                for( k = 0; k < K; k++ )
                {
                    if( counters[k] != 0 )
2565 2566 2567 2568 2569 2570 2571
                        continue;

                    // if some cluster appeared to be empty then:
                    //   1. find the biggest cluster
                    //   2. find the farthest from the center point in the biggest cluster
                    //   3. exclude the farthest point from the biggest cluster and form a new 1-point cluster.
                    int max_k = 0;
M
Maria Dimashova 已提交
2572
                    for( int k1 = 1; k1 < K; k1++ )
2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601
                    {
                        if( counters[max_k] < counters[k1] )
                            max_k = k1;
                    }
                    
                    double max_dist = 0;                        
                    int farthest_i = -1;
                    float* new_center = centers.ptr<float>(k);
                    float* old_center = centers.ptr<float>(max_k);
                    
                    for( i = 0; i < N; i++ )
                    {
                        if( labels[i] != max_k )
                            continue;
                        sample = data.ptr<float>(i);
                        double dist = normL2Sqr_(sample, old_center, dims);
                            
                        if( max_dist <= dist )
                        {
                            max_dist = dist;
                            farthest_i = i;
                        }
                    }
                    
                    counters[max_k]--;
                    counters[k]++;
                    sample = data.ptr<float>(farthest_i);
                    
                    for( j = 0; j < dims; j++ )
2602
                    {
2603 2604
                        old_center[j] -= sample[j];
                        new_center[j] += sample[j];
2605
                    }
2606 2607 2608 2609 2610 2611 2612 2613 2614 2615
                }

                for( k = 0; k < K; k++ )
                {
                    float* center = centers.ptr<float>(k);
                    CV_Assert( counters[k] != 0 );

                    float scale = 1.f/counters[k];
                    for( j = 0; j < dims; j++ )
                        center[j] *= scale;
2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641
                    
                    if( iter > 0 )
                    {
                        double dist = 0;
                        const float* old_center = old_centers.ptr<float>(k);
                        for( j = 0; j < dims; j++ )
                        {
                            double t = center[j] - old_center[j];
                            dist += t*t;
                        }
                        max_center_shift = std::max(max_center_shift, dist);
                    }
                }
            }

            // assign labels
            compactness = 0;
            for( i = 0; i < N; i++ )
            {
                sample = data.ptr<float>(i);
                int k_best = 0;
                double min_dist = DBL_MAX;

                for( k = 0; k < K; k++ )
                {
                    const float* center = centers.ptr<float>(k);
2642
                    double dist = normL2Sqr_(sample, center, dims);
2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658

                    if( min_dist > dist )
                    {
                        min_dist = dist;
                        k_best = k;
                    }
                }

                compactness += min_dist;
                labels[i] = k_best;
            }
        }

        if( compactness < best_compactness )
        {
            best_compactness = compactness;
2659 2660
            if( _centers.needed() )
                centers.copyTo(_centers);
2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821
            _labels.copyTo(best_labels);
        }
    }

    return best_compactness;
}


CV_IMPL void cvSetIdentity( CvArr* arr, CvScalar value )
{
    cv::Mat m = cv::cvarrToMat(arr);
    cv::setIdentity(m, value);
}


CV_IMPL CvScalar cvTrace( const CvArr* arr )
{
    return cv::trace(cv::cvarrToMat(arr));
}


CV_IMPL void cvTranspose( const CvArr* srcarr, CvArr* dstarr )
{
    cv::Mat src = cv::cvarrToMat(srcarr), dst = cv::cvarrToMat(dstarr);

    CV_Assert( src.rows == dst.cols && src.cols == dst.rows && src.type() == dst.type() );
    transpose( src, dst );
}


CV_IMPL void cvCompleteSymm( CvMat* matrix, int LtoR )
{
    cv::Mat m(matrix);
    cv::completeSymm( m, LtoR != 0 );
}


CV_IMPL void cvCrossProduct( const CvArr* srcAarr, const CvArr* srcBarr, CvArr* dstarr )
{
    cv::Mat srcA = cv::cvarrToMat(srcAarr), dst = cv::cvarrToMat(dstarr);

    CV_Assert( srcA.size() == dst.size() && srcA.type() == dst.type() );
    srcA.cross(cv::cvarrToMat(srcBarr)).copyTo(dst);
}


CV_IMPL void
cvReduce( const CvArr* srcarr, CvArr* dstarr, int dim, int op )
{
    cv::Mat src = cv::cvarrToMat(srcarr), dst = cv::cvarrToMat(dstarr);
    
    if( dim < 0 )
        dim = src.rows > dst.rows ? 0 : src.cols > dst.cols ? 1 : dst.cols == 1;

    if( dim > 1 )
        CV_Error( CV_StsOutOfRange, "The reduced dimensionality index is out of range" );

    if( (dim == 0 && (dst.cols != src.cols || dst.rows != 1)) ||
        (dim == 1 && (dst.rows != src.rows || dst.cols != 1)) )
        CV_Error( CV_StsBadSize, "The output array size is incorrect" );
    
    if( src.channels() != dst.channels() )
        CV_Error( CV_StsUnmatchedFormats, "Input and output arrays must have the same number of channels" );

    cv::reduce(src, dst, dim, op, dst.type());
}


CV_IMPL CvArr*
cvRange( CvArr* arr, double start, double end )
{
    int ok = 0;
    
    CvMat stub, *mat = (CvMat*)arr;
    double delta;
    int type, step;
    double val = start;
    int i, j;
    int rows, cols;
    
    if( !CV_IS_MAT(mat) )
        mat = cvGetMat( mat, &stub);

    rows = mat->rows;
    cols = mat->cols;
    type = CV_MAT_TYPE(mat->type);
    delta = (end-start)/(rows*cols);

    if( CV_IS_MAT_CONT(mat->type) )
    {
        cols *= rows;
        rows = 1;
        step = 1;
    }
    else
        step = mat->step / CV_ELEM_SIZE(type);

    if( type == CV_32SC1 )
    {
        int* idata = mat->data.i;
        int ival = cvRound(val), idelta = cvRound(delta);

        if( fabs(val - ival) < DBL_EPSILON &&
            fabs(delta - idelta) < DBL_EPSILON )
        {
            for( i = 0; i < rows; i++, idata += step )
                for( j = 0; j < cols; j++, ival += idelta )
                    idata[j] = ival;
        }
        else
        {
            for( i = 0; i < rows; i++, idata += step )
                for( j = 0; j < cols; j++, val += delta )
                    idata[j] = cvRound(val);
        }
    }
    else if( type == CV_32FC1 )
    {
        float* fdata = mat->data.fl;
        for( i = 0; i < rows; i++, fdata += step )
            for( j = 0; j < cols; j++, val += delta )
                fdata[j] = (float)val;
    }
    else
        CV_Error( CV_StsUnsupportedFormat, "The function only supports 32sC1 and 32fC1 datatypes" );

    ok = 1;
    return ok ? arr : 0;
}


CV_IMPL void
cvSort( const CvArr* _src, CvArr* _dst, CvArr* _idx, int flags )
{
    cv::Mat src = cv::cvarrToMat(_src), dst, idx;
    
    if( _idx )
    {
        cv::Mat idx0 = cv::cvarrToMat(_idx), idx = idx0;
        CV_Assert( src.size() == idx.size() && idx.type() == CV_32S && src.data != idx.data );
        cv::sortIdx( src, idx, flags );
        CV_Assert( idx0.data == idx.data );
    }

    if( _dst )
    {
        cv::Mat dst0 = cv::cvarrToMat(_dst), dst = dst0;
        CV_Assert( src.size() == dst.size() && src.type() == dst.type() );
        cv::sort( src, dst, flags );
        CV_Assert( dst0.data == dst.data );
    }
}


CV_IMPL int
cvKMeans2( const CvArr* _samples, int cluster_count, CvArr* _labels,
           CvTermCriteria termcrit, int attempts, CvRNG*,
           int flags, CvArr* _centers, double* _compactness )
{
    cv::Mat data = cv::cvarrToMat(_samples), labels = cv::cvarrToMat(_labels), centers;
    if( _centers )
2822
    {
2823
        centers = cv::cvarrToMat(_centers);
M
Maria Dimashova 已提交
2824

2825
        centers = centers.reshape(1);
M
Maria Dimashova 已提交
2826 2827 2828 2829 2830 2831
        data = data.reshape(1);

        CV_Assert( !centers.empty() );
        CV_Assert( centers.rows == cluster_count );
        CV_Assert( centers.cols == data.cols );
        CV_Assert( centers.depth() == data.depth() );
2832
    }
2833 2834 2835
    CV_Assert( labels.isContinuous() && labels.type() == CV_32S &&
        (labels.cols == 1 || labels.rows == 1) &&
        labels.cols + labels.rows - 1 == data.rows );
2836
    
2837
    double compactness = cv::kmeans(data, cluster_count, labels, termcrit, attempts,
2838
                                    flags, _centers ? cv::_OutputArray(centers) : cv::_OutputArray() );
2839 2840 2841 2842 2843 2844 2845 2846 2847 2848
    if( _compactness )
        *_compactness = compactness;
    return 1;
}

///////////////////////////// n-dimensional matrices ////////////////////////////

namespace cv
{

V
Vadim Pisarevsky 已提交
2849
Mat Mat::reshape(int, int, const int*) const
2850
{
V
Vadim Pisarevsky 已提交
2851 2852 2853 2854
    CV_Error(CV_StsNotImplemented, "");
    // TBD
    return Mat();
}
2855

V
Vadim Pisarevsky 已提交
2856 2857 2858 2859 2860
Mat::operator CvMatND() const
{
    CvMatND mat;
    cvInitMatNDHeader( &mat, dims, size, type(), data );
    int i, d = dims;
2861
    for( i = 0; i < d; i++ )
V
Vadim Pisarevsky 已提交
2862 2863 2864 2865 2866 2867
        mat.dim[i].step = (int)step[i];
    mat.type |= flags & CONTINUOUS_FLAG;
    return mat;
}

NAryMatIterator::NAryMatIterator()
2868
    : arrays(0), planes(0), ptrs(0), narrays(0), nplanes(0), size(0), iterdepth(0), idx(0)
V
Vadim Pisarevsky 已提交
2869 2870
{
}
2871

V
Vadim Pisarevsky 已提交
2872
NAryMatIterator::NAryMatIterator(const Mat** _arrays, Mat* _planes, int _narrays)
2873 2874 2875 2876 2877 2878 2879
: arrays(0), planes(0), ptrs(0), narrays(0), nplanes(0), size(0), iterdepth(0), idx(0)
{
    init(_arrays, _planes, 0, _narrays);
}    
    
NAryMatIterator::NAryMatIterator(const Mat** _arrays, uchar** _ptrs, int _narrays)
    : arrays(0), planes(0), ptrs(0), narrays(0), nplanes(0), size(0), iterdepth(0), idx(0)
V
Vadim Pisarevsky 已提交
2880
{
2881
    init(_arrays, 0, _ptrs, _narrays);
V
Vadim Pisarevsky 已提交
2882 2883
}
    
2884
void NAryMatIterator::init(const Mat** _arrays, Mat* _planes, uchar** _ptrs, int _narrays)
V
Vadim Pisarevsky 已提交
2885
{
2886 2887
    CV_Assert( _arrays && (_ptrs || _planes) );
    int i, j, d1=0, i0 = -1, d = -1;
V
Vadim Pisarevsky 已提交
2888 2889
    
    arrays = _arrays;
2890
    ptrs = _ptrs;
V
Vadim Pisarevsky 已提交
2891 2892 2893
    planes = _planes;
    narrays = _narrays;
    nplanes = 0;
2894
    size = 0;
V
Vadim Pisarevsky 已提交
2895 2896
    
    if( narrays < 0 )
2897
    {
V
Vadim Pisarevsky 已提交
2898 2899 2900 2901
        for( i = 0; _arrays[i] != 0; i++ )
            ;
        narrays = i;
        CV_Assert(narrays <= 1000);
2902
    }
V
Vadim Pisarevsky 已提交
2903 2904 2905 2906

    iterdepth = 0;

    for( i = 0; i < narrays; i++ )
2907
    {
V
Vadim Pisarevsky 已提交
2908 2909
        CV_Assert(arrays[i] != 0);
        const Mat& A = *arrays[i];
2910 2911 2912 2913 2914
        if( ptrs )
            ptrs[i] = A.data;
        
        if( !A.data )
            continue;
V
Vadim Pisarevsky 已提交
2915 2916
        
        if( i0 < 0 )
2917
        {
V
Vadim Pisarevsky 已提交
2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936
            i0 = i;
            d = A.dims;
            
            // find the first dimensionality which is different from 1;
            // in any of the arrays the first "d1" step do not affect the continuity
            for( d1 = 0; d1 < d; d1++ )
                if( A.size[d1] > 1 )
                    break;
        }
        else
            CV_Assert( A.size == arrays[i0]->size );

        if( !A.isContinuous() )
        {
            CV_Assert( A.step[d-1] == A.elemSize() );
            for( j = d-1; j > d1; j-- )
                if( A.step[j]*A.size[j] < A.step[j-1] )
                    break;
            iterdepth = std::max(iterdepth, j);
2937 2938
        }
    }
V
Vadim Pisarevsky 已提交
2939 2940

    if( i0 >= 0 )
2941
    {
2942
        size = arrays[i0]->size[d-1];
V
Vadim Pisarevsky 已提交
2943 2944
        for( j = d-1; j > iterdepth; j-- )
        {
2945
            int64 total1 = (int64)size*arrays[i0]->size[j-1];
V
Vadim Pisarevsky 已提交
2946 2947
            if( total1 != (int)total1 )
                break;
2948
            size = (int)total1;
V
Vadim Pisarevsky 已提交
2949 2950 2951 2952 2953 2954 2955 2956 2957
        }

        iterdepth = j;
        if( iterdepth == d1 )
            iterdepth = 0;
        
        nplanes = 1;
        for( j = iterdepth-1; j >= 0; j-- )
            nplanes *= arrays[i0]->size[j];
2958
    }
V
Vadim Pisarevsky 已提交
2959
    else
2960 2961 2962 2963 2964 2965
        iterdepth = 0;
    
    idx = 0;
    
    if( !planes )
        return;
2966

V
Vadim Pisarevsky 已提交
2967
    for( i = 0; i < narrays; i++ )
2968
    {
2969 2970 2971 2972
        CV_Assert(arrays[i] != 0);
        const Mat& A = *arrays[i];
        
        if( !A.data )
V
Vadim Pisarevsky 已提交
2973 2974 2975 2976
        {
            planes[i] = Mat();
            continue;
        }
2977 2978
        
        planes[i] = Mat(1, (int)size, A.type(), A.data); 
2979 2980 2981
    }
}

V
Vadim Pisarevsky 已提交
2982 2983

NAryMatIterator& NAryMatIterator::operator ++()
2984 2985 2986 2987
{
    if( idx >= nplanes-1 )
        return *this;
    ++idx;
2988 2989
    
    if( iterdepth == 1 )
2990
    {
2991 2992 2993 2994 2995 2996 2997 2998 2999 3000
        if( ptrs )
        {
            for( int i = 0; i < narrays; i++ )
            {
                if( !ptrs[i] )
                    continue;
                ptrs[i] = arrays[i]->data + arrays[i]->step[0]*idx;
            }
        }
        if( planes )
3001
        {
3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016
            for( int i = 0; i < narrays; i++ )
            {
                if( !planes[i].data )
                    continue;
                planes[i].data = arrays[i]->data + arrays[i]->step[0]*idx;
            }
        }
    }
    else
    {
        for( int i = 0; i < narrays; i++ )
        {
            const Mat& A = *arrays[i];
            if( !A.data )
                continue;
3017
            int _idx = (int)idx;
3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028
            uchar* data = A.data;
            for( int j = iterdepth-1; j >= 0 && _idx > 0; j-- )
            {
                int szi = A.size[j], t = _idx/szi;
                data += (_idx - t * szi)*A.step[j];
                _idx = t;
            }
            if( ptrs )
                ptrs[i] = data;
            if( planes )
                planes[i].data = data;
3029 3030 3031 3032 3033 3034
        }
    }
    
    return *this;
}

V
Vadim Pisarevsky 已提交
3035
NAryMatIterator NAryMatIterator::operator ++(int)
3036
{
V
Vadim Pisarevsky 已提交
3037
    NAryMatIterator it = *this;
3038 3039 3040 3041
    ++*this;
    return it;
}

V
Vadim Pisarevsky 已提交
3042 3043 3044
///////////////////////////////////////////////////////////////////////////
//                              MatConstIterator                         //
///////////////////////////////////////////////////////////////////////////
3045

V
Vadim Pisarevsky 已提交
3046
Point MatConstIterator::pos() const
3047
{
V
Vadim Pisarevsky 已提交
3048 3049 3050 3051 3052 3053 3054
    if( !m )
        return Point();
    CV_DbgAssert(m->dims <= 2);
    
    ptrdiff_t ofs = ptr - m->data;
    int y = (int)(ofs/m->step[0]);
    return Point((int)((ofs - y*m->step[0])/elemSize), y);
3055 3056
}

V
Vadim Pisarevsky 已提交
3057
void MatConstIterator::pos(int* _idx) const
3058
{
V
Vadim Pisarevsky 已提交
3059 3060 3061
    CV_Assert(m != 0 && _idx);
    ptrdiff_t ofs = ptr - m->data;
    for( int i = 0; i < m->dims; i++ )
3062
    {
V
Vadim Pisarevsky 已提交
3063 3064 3065
        size_t s = m->step[i], v = ofs/s;
        ofs -= v*s;
        _idx[i] = (int)v;
3066 3067 3068
    }
}

V
Vadim Pisarevsky 已提交
3069
ptrdiff_t MatConstIterator::lpos() const
3070
{
V
Vadim Pisarevsky 已提交
3071 3072 3073 3074 3075 3076 3077
    if(!m)
        return 0;
    if( m->isContinuous() )
        return (ptr - sliceStart)/elemSize;
    ptrdiff_t ofs = ptr - m->data;
    int i, d = m->dims;
    if( d == 2 )
3078
    {
V
Vadim Pisarevsky 已提交
3079 3080
        ptrdiff_t y = ofs/m->step[0];
        return y*m->cols + (ofs - y*m->step[0])/elemSize;
3081
    }
V
Vadim Pisarevsky 已提交
3082 3083
    ptrdiff_t result = 0;
    for( i = 0; i < d; i++ )
3084
    {
V
Vadim Pisarevsky 已提交
3085 3086 3087
        size_t s = m->step[i], v = ofs/s;
        ofs -= v*s;
        result = result*m->size[i] + v;
3088
    }
V
Vadim Pisarevsky 已提交
3089
    return result;
3090
}
V
Vadim Pisarevsky 已提交
3091 3092
    
void MatConstIterator::seek(ptrdiff_t ofs, bool relative)
3093
{
V
Vadim Pisarevsky 已提交
3094
    if( m->isContinuous() )
3095
    {
V
Vadim Pisarevsky 已提交
3096 3097 3098 3099 3100 3101
        ptr = (relative ? ptr : sliceStart) + ofs*elemSize;
        if( ptr < sliceStart )
            ptr = sliceStart;
        else if( ptr > sliceEnd )
            ptr = sliceEnd;
        return;
3102
    }
V
Vadim Pisarevsky 已提交
3103 3104 3105
    
    int d = m->dims;
    if( d == 2 )
3106
    {
V
Vadim Pisarevsky 已提交
3107 3108
        ptrdiff_t ofs0, y;
        if( relative )
3109
        {
V
Vadim Pisarevsky 已提交
3110 3111 3112
            ofs0 = ptr - m->data;
            y = ofs0/m->step[0];
            ofs += y*m->cols + (ofs0 - y*m->step[0])/elemSize;
3113
        }
V
Vadim Pisarevsky 已提交
3114 3115 3116
        y = ofs/m->cols;
        int y1 = std::min(std::max((int)y, 0), m->rows-1);
        sliceStart = m->data + y1*m->step[0];
3117
        sliceEnd = sliceStart + m->cols*elemSize;
V
Vadim Pisarevsky 已提交
3118 3119 3120
        ptr = y < 0 ? sliceStart : y >= m->rows ? sliceEnd :
            sliceStart + (ofs - y*m->cols)*elemSize;
        return;
3121 3122
    }
    
V
Vadim Pisarevsky 已提交
3123 3124
    if( relative )
        ofs += lpos();
3125
    
V
Vadim Pisarevsky 已提交
3126 3127
    if( ofs < 0 )
        ofs = 0;
3128
    
V
Vadim Pisarevsky 已提交
3129 3130 3131 3132 3133 3134
    int szi = m->size[d-1];
    ptrdiff_t t = ofs/szi;
    int v = (int)(ofs - t*szi);
    ofs = t;
    ptr = m->data + v*elemSize;
    sliceStart = m->data;
3135
    
V
Vadim Pisarevsky 已提交
3136
    for( int i = d-2; i >= 0; i-- )
3137
    {
V
Vadim Pisarevsky 已提交
3138 3139 3140 3141 3142
        szi = m->size[i];
        t = ofs/szi;
        v = (int)(ofs - t*szi);
        ofs = t;
        sliceStart += v*m->step[i];
3143
    }
V
Vadim Pisarevsky 已提交
3144 3145 3146 3147 3148 3149
    
    sliceEnd = sliceStart + m->size[d-1]*elemSize;
    if( ofs > 0 )
        ptr = sliceEnd;
    else
        ptr = sliceStart + (ptr - m->data);
3150
}
V
Vadim Pisarevsky 已提交
3151 3152 3153 3154 3155 3156 3157 3158 3159 3160
    
void MatConstIterator::seek(const int* _idx, bool relative)
{
    int i, d = m->dims;
    ptrdiff_t ofs = 0;
    if( !_idx )
        ;
    else if( d == 2 )
        ofs = _idx[0]*m->size[1] + _idx[1];
    else
3161
    {
V
Vadim Pisarevsky 已提交
3162 3163
        for( i = 0; i < d; i++ )
            ofs = ofs*m->size[i] + _idx[i];
3164
    }
V
Vadim Pisarevsky 已提交
3165
    seek(ofs, relative);
3166 3167
}

V
Vadim Pisarevsky 已提交
3168
ptrdiff_t operator - (const MatConstIterator& b, const MatConstIterator& a)
3169
{
V
Vadim Pisarevsky 已提交
3170 3171 3172 3173
    if( a.m != b.m )
        return INT_MAX;
    if( a.sliceEnd == b.sliceEnd )
        return (b.ptr - a.ptr)/b.elemSize;
3174

V
Vadim Pisarevsky 已提交
3175 3176 3177
    return b.lpos() - a.lpos();
}    
    
3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322
//////////////////////////////// SparseMat ////////////////////////////////

template<typename T1, typename T2> void
convertData_(const void* _from, void* _to, int cn)
{
    const T1* from = (const T1*)_from;
    T2* to = (T2*)_to;
    if( cn == 1 )
        *to = saturate_cast<T2>(*from);
    else
        for( int i = 0; i < cn; i++ )
            to[i] = saturate_cast<T2>(from[i]);
}

template<typename T1, typename T2> void
convertScaleData_(const void* _from, void* _to, int cn, double alpha, double beta)
{
    const T1* from = (const T1*)_from;
    T2* to = (T2*)_to;
    if( cn == 1 )
        *to = saturate_cast<T2>(*from*alpha + beta);
    else
        for( int i = 0; i < cn; i++ )
            to[i] = saturate_cast<T2>(from[i]*alpha + beta);
}

ConvertData getConvertData(int fromType, int toType)
{
    static ConvertData tab[][8] =
    {{ convertData_<uchar, uchar>, convertData_<uchar, schar>,
      convertData_<uchar, ushort>, convertData_<uchar, short>,
      convertData_<uchar, int>, convertData_<uchar, float>,
      convertData_<uchar, double>, 0 },

    { convertData_<schar, uchar>, convertData_<schar, schar>,
      convertData_<schar, ushort>, convertData_<schar, short>,
      convertData_<schar, int>, convertData_<schar, float>,
      convertData_<schar, double>, 0 },

    { convertData_<ushort, uchar>, convertData_<ushort, schar>,
      convertData_<ushort, ushort>, convertData_<ushort, short>,
      convertData_<ushort, int>, convertData_<ushort, float>,
      convertData_<ushort, double>, 0 },

    { convertData_<short, uchar>, convertData_<short, schar>,
      convertData_<short, ushort>, convertData_<short, short>,
      convertData_<short, int>, convertData_<short, float>,
      convertData_<short, double>, 0 },

    { convertData_<int, uchar>, convertData_<int, schar>,
      convertData_<int, ushort>, convertData_<int, short>,
      convertData_<int, int>, convertData_<int, float>,
      convertData_<int, double>, 0 },

    { convertData_<float, uchar>, convertData_<float, schar>,
      convertData_<float, ushort>, convertData_<float, short>,
      convertData_<float, int>, convertData_<float, float>,
      convertData_<float, double>, 0 },

    { convertData_<double, uchar>, convertData_<double, schar>,
      convertData_<double, ushort>, convertData_<double, short>,
      convertData_<double, int>, convertData_<double, float>,
      convertData_<double, double>, 0 },

    { 0, 0, 0, 0, 0, 0, 0, 0 }};

    ConvertData func = tab[CV_MAT_DEPTH(fromType)][CV_MAT_DEPTH(toType)];
    CV_Assert( func != 0 );
    return func;
}

ConvertScaleData getConvertScaleData(int fromType, int toType)
{
    static ConvertScaleData tab[][8] =
    {{ convertScaleData_<uchar, uchar>, convertScaleData_<uchar, schar>,
      convertScaleData_<uchar, ushort>, convertScaleData_<uchar, short>,
      convertScaleData_<uchar, int>, convertScaleData_<uchar, float>,
      convertScaleData_<uchar, double>, 0 },

    { convertScaleData_<schar, uchar>, convertScaleData_<schar, schar>,
      convertScaleData_<schar, ushort>, convertScaleData_<schar, short>,
      convertScaleData_<schar, int>, convertScaleData_<schar, float>,
      convertScaleData_<schar, double>, 0 },

    { convertScaleData_<ushort, uchar>, convertScaleData_<ushort, schar>,
      convertScaleData_<ushort, ushort>, convertScaleData_<ushort, short>,
      convertScaleData_<ushort, int>, convertScaleData_<ushort, float>,
      convertScaleData_<ushort, double>, 0 },

    { convertScaleData_<short, uchar>, convertScaleData_<short, schar>,
      convertScaleData_<short, ushort>, convertScaleData_<short, short>,
      convertScaleData_<short, int>, convertScaleData_<short, float>,
      convertScaleData_<short, double>, 0 },

    { convertScaleData_<int, uchar>, convertScaleData_<int, schar>,
      convertScaleData_<int, ushort>, convertScaleData_<int, short>,
      convertScaleData_<int, int>, convertScaleData_<int, float>,
      convertScaleData_<int, double>, 0 },

    { convertScaleData_<float, uchar>, convertScaleData_<float, schar>,
      convertScaleData_<float, ushort>, convertScaleData_<float, short>,
      convertScaleData_<float, int>, convertScaleData_<float, float>,
      convertScaleData_<float, double>, 0 },

    { convertScaleData_<double, uchar>, convertScaleData_<double, schar>,
      convertScaleData_<double, ushort>, convertScaleData_<double, short>,
      convertScaleData_<double, int>, convertScaleData_<double, float>,
      convertScaleData_<double, double>, 0 },

    { 0, 0, 0, 0, 0, 0, 0, 0 }};

    ConvertScaleData func = tab[CV_MAT_DEPTH(fromType)][CV_MAT_DEPTH(toType)];
    CV_Assert( func != 0 );
    return func;
}

enum { HASH_SIZE0 = 8 };

static inline void copyElem(const uchar* from, uchar* to, size_t elemSize)
{
    size_t i;
    for( i = 0; (int)i <= (int)(elemSize - sizeof(int)); i += sizeof(int) )
        *(int*)(to + i) = *(const int*)(from + i);
    for( ; i < elemSize; i++ )
        to[i] = from[i];
}

static inline bool isZeroElem(const uchar* data, size_t elemSize)
{
    size_t i;
    for( i = 0; i <= elemSize - sizeof(int); i += sizeof(int) )
        if( *(int*)(data + i) != 0 )
            return false;
    for( ; i < elemSize; i++ )
        if( data[i] != 0 )
            return false;
    return true;
}

SparseMat::Hdr::Hdr( int _dims, const int* _sizes, int _type )
{
    refcount = 1;

    dims = _dims;
    valueOffset = (int)alignSize(sizeof(SparseMat::Node) +
3323
        sizeof(int)*std::max(dims - CV_MAX_DIM, 0), CV_ELEM_SIZE1(_type));
3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344
    nodeSize = alignSize(valueOffset +
        CV_ELEM_SIZE(_type), (int)sizeof(size_t));
   
    int i;
    for( i = 0; i < dims; i++ )
        size[i] = _sizes[i];
    for( ; i < CV_MAX_DIM; i++ )
        size[i] = 0;
    clear();
}

void SparseMat::Hdr::clear()
{
    hashtab.clear();
    hashtab.resize(HASH_SIZE0);
    pool.clear();
    pool.resize(nodeSize);
    nodeCount = freeList = 0;
}


V
Vadim Pisarevsky 已提交
3345
SparseMat::SparseMat(const Mat& m)
3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559
: flags(MAGIC_VAL), hdr(0)
{
    create( m.dims, m.size, m.type() );

    int i, idx[CV_MAX_DIM] = {0}, d = m.dims, lastSize = m.size[d - 1];
    size_t esz = m.elemSize();
    uchar* ptr = m.data;

    for(;;)
    {
        for( i = 0; i < lastSize; i++, ptr += esz )
        {
            if( isZeroElem(ptr, esz) )
                continue;
            idx[d-1] = i;
            uchar* to = newNode(idx, hash(idx));
            copyElem( ptr, to, esz );
        }
        
        for( i = d - 2; i >= 0; i-- )
        {
            ptr += m.step[i] - m.size[i+1]*m.step[i+1];
            if( ++idx[i] < m.size[i] )
                break;
            idx[i] = 0;
        }
        if( i < 0 )
            break;
    }
}
                
SparseMat::SparseMat(const CvSparseMat* m)
: flags(MAGIC_VAL), hdr(0)
{
    CV_Assert(m);
    create( m->dims, &m->size[0], m->type );

    CvSparseMatIterator it;
    CvSparseNode* n = cvInitSparseMatIterator(m, &it);
    size_t esz = elemSize();

    for( ; n != 0; n = cvGetNextSparseNode(&it) )
    {
        const int* idx = CV_NODE_IDX(m, n);
        uchar* to = newNode(idx, hash(idx));
        copyElem((const uchar*)CV_NODE_VAL(m, n), to, esz);
    }
}

void SparseMat::create(int d, const int* _sizes, int _type)
{
    int i;
    CV_Assert( _sizes && 0 < d && d <= CV_MAX_DIM );
    for( i = 0; i < d; i++ )
        CV_Assert( _sizes[i] > 0 );
    _type = CV_MAT_TYPE(_type);
    if( hdr && _type == type() && hdr->dims == d && hdr->refcount == 1 )
    {
        for( i = 0; i < d; i++ )
            if( _sizes[i] != hdr->size[i] )
                break;
        if( i == d )
        {
            clear();
            return;
        }
    }
    release();
    flags = MAGIC_VAL | _type;
    hdr = new Hdr(d, _sizes, _type);
}

void SparseMat::copyTo( SparseMat& m ) const
{
    if( hdr == m.hdr )
        return;
    if( !hdr )
    {
        m.release();
        return;
    }
    m.create( hdr->dims, hdr->size, type() );
    SparseMatConstIterator from = begin();
    size_t i, N = nzcount(), esz = elemSize();

    for( i = 0; i < N; i++, ++from )
    {
        const Node* n = from.node();
        uchar* to = m.newNode(n->idx, n->hashval);
        copyElem( from.ptr, to, esz );
    }
}

void SparseMat::copyTo( Mat& m ) const
{
    CV_Assert( hdr );
    m.create( dims(), hdr->size, type() );
    m = Scalar(0);

    SparseMatConstIterator from = begin();
    size_t i, N = nzcount(), esz = elemSize();

    for( i = 0; i < N; i++, ++from )
    {
        const Node* n = from.node();
        copyElem( from.ptr, m.ptr(n->idx), esz);
    }
}


void SparseMat::convertTo( SparseMat& m, int rtype, double alpha ) const
{
    int cn = channels();
    if( rtype < 0 )
        rtype = type();
    rtype = CV_MAKETYPE(rtype, cn);
    if( hdr == m.hdr && rtype != type()  )
    {
        SparseMat temp;
        convertTo(temp, rtype, alpha);
        m = temp;
        return;
    }
    
    CV_Assert(hdr != 0);
    if( hdr != m.hdr )
        m.create( hdr->dims, hdr->size, rtype );
    
    SparseMatConstIterator from = begin();
    size_t i, N = nzcount();

    if( alpha == 1 )
    {
        ConvertData cvtfunc = getConvertData(type(), rtype);
        for( i = 0; i < N; i++, ++from )
        {
            const Node* n = from.node();
            uchar* to = hdr == m.hdr ? from.ptr : m.newNode(n->idx, n->hashval);
            cvtfunc( from.ptr, to, cn ); 
        }
    }
    else
    {
        ConvertScaleData cvtfunc = getConvertScaleData(type(), rtype);
        for( i = 0; i < N; i++, ++from )
        {
            const Node* n = from.node();
            uchar* to = hdr == m.hdr ? from.ptr : m.newNode(n->idx, n->hashval);
            cvtfunc( from.ptr, to, cn, alpha, 0 ); 
        }
    }
}


void SparseMat::convertTo( Mat& m, int rtype, double alpha, double beta ) const
{
    int cn = channels();
    if( rtype < 0 )
        rtype = type();
    rtype = CV_MAKETYPE(rtype, cn);
    
    CV_Assert( hdr );
    m.create( dims(), hdr->size, rtype );
    m = Scalar(beta);

    SparseMatConstIterator from = begin();
    size_t i, N = nzcount();

    if( alpha == 1 && beta == 0 )
    {
        ConvertData cvtfunc = getConvertData(type(), rtype);
        for( i = 0; i < N; i++, ++from )
        {
            const Node* n = from.node();
            uchar* to = m.ptr(n->idx);
            cvtfunc( from.ptr, to, cn );
        }
    }
    else
    {
        ConvertScaleData cvtfunc = getConvertScaleData(type(), rtype);
        for( i = 0; i < N; i++, ++from )
        {
            const Node* n = from.node();
            uchar* to = m.ptr(n->idx);
            cvtfunc( from.ptr, to, cn, alpha, beta );
        }
    }
}

void SparseMat::clear()
{
    if( hdr )
        hdr->clear();
}

SparseMat::operator CvSparseMat*() const
{
    if( !hdr )
        return 0;
    CvSparseMat* m = cvCreateSparseMat(hdr->dims, hdr->size, type());

    SparseMatConstIterator from = begin();
    size_t i, N = nzcount(), esz = elemSize();

    for( i = 0; i < N; i++, ++from )
    {
        const Node* n = from.node();
        uchar* to = cvPtrND(m, n->idx, 0, -2, 0);
        copyElem(from.ptr, to, esz);
    }
    return m;
}

3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581
uchar* SparseMat::ptr(int i0, bool createMissing, size_t* hashval)
{
    CV_Assert( hdr && hdr->dims == 1 );
    size_t h = hashval ? *hashval : hash(i0);
    size_t hidx = h & (hdr->hashtab.size() - 1), nidx = hdr->hashtab[hidx];
    uchar* pool = &hdr->pool[0];
    while( nidx != 0 )
    {
        Node* elem = (Node*)(pool + nidx);
        if( elem->hashval == h && elem->idx[0] == i0 )
            return &value<uchar>(elem);
        nidx = elem->next;
    }
    
    if( createMissing )
    {
        int idx[] = { i0 };
        return newNode( idx, h );
    }
    return 0;
}
    
3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719
uchar* SparseMat::ptr(int i0, int i1, bool createMissing, size_t* hashval)
{
    CV_Assert( hdr && hdr->dims == 2 );
    size_t h = hashval ? *hashval : hash(i0, i1);
    size_t hidx = h & (hdr->hashtab.size() - 1), nidx = hdr->hashtab[hidx];
    uchar* pool = &hdr->pool[0];
    while( nidx != 0 )
    {
        Node* elem = (Node*)(pool + nidx);
        if( elem->hashval == h && elem->idx[0] == i0 && elem->idx[1] == i1 )
            return &value<uchar>(elem);
        nidx = elem->next;
    }

    if( createMissing )
    {
        int idx[] = { i0, i1 };
        return newNode( idx, h );
    }
    return 0;
}

uchar* SparseMat::ptr(int i0, int i1, int i2, bool createMissing, size_t* hashval)
{
    CV_Assert( hdr && hdr->dims == 3 );
    size_t h = hashval ? *hashval : hash(i0, i1, i2);
    size_t hidx = h & (hdr->hashtab.size() - 1), nidx = hdr->hashtab[hidx];
    uchar* pool = &hdr->pool[0];
    while( nidx != 0 )
    {
        Node* elem = (Node*)(pool + nidx);
        if( elem->hashval == h && elem->idx[0] == i0 &&
            elem->idx[1] == i1 && elem->idx[2] == i2 )
            return &value<uchar>(elem);
        nidx = elem->next;
    }

    if( createMissing )
    {
        int idx[] = { i0, i1, i2 };
        return newNode( idx, h );
    }
    return 0;
}

uchar* SparseMat::ptr(const int* idx, bool createMissing, size_t* hashval)
{
    CV_Assert( hdr );
    int i, d = hdr->dims;
    size_t h = hashval ? *hashval : hash(idx);
    size_t hidx = h & (hdr->hashtab.size() - 1), nidx = hdr->hashtab[hidx];
    uchar* pool = &hdr->pool[0];
    while( nidx != 0 )
    {
        Node* elem = (Node*)(pool + nidx);
        if( elem->hashval == h )
        {
            for( i = 0; i < d; i++ )
                if( elem->idx[i] != idx[i] )
                    break;
            if( i == d )
                return &value<uchar>(elem);
        }
        nidx = elem->next;
    }

    return createMissing ? newNode(idx, h) : 0;
}

void SparseMat::erase(int i0, int i1, size_t* hashval)
{
    CV_Assert( hdr && hdr->dims == 2 );
    size_t h = hashval ? *hashval : hash(i0, i1);
    size_t hidx = h & (hdr->hashtab.size() - 1), nidx = hdr->hashtab[hidx], previdx=0;
    uchar* pool = &hdr->pool[0];
    while( nidx != 0 )
    {
        Node* elem = (Node*)(pool + nidx);
        if( elem->hashval == h && elem->idx[0] == i0 && elem->idx[1] == i1 )
            break;
        previdx = nidx;
        nidx = elem->next;
    }

    if( nidx )
        removeNode(hidx, nidx, previdx);
}

void SparseMat::erase(int i0, int i1, int i2, size_t* hashval)
{
    CV_Assert( hdr && hdr->dims == 3 );
    size_t h = hashval ? *hashval : hash(i0, i1, i2);
    size_t hidx = h & (hdr->hashtab.size() - 1), nidx = hdr->hashtab[hidx], previdx=0;
    uchar* pool = &hdr->pool[0];
    while( nidx != 0 )
    {
        Node* elem = (Node*)(pool + nidx);
        if( elem->hashval == h && elem->idx[0] == i0 &&
            elem->idx[1] == i1 && elem->idx[2] == i2 )
            break;
        previdx = nidx;
        nidx = elem->next;
    }

    if( nidx )
        removeNode(hidx, nidx, previdx);
}

void SparseMat::erase(const int* idx, size_t* hashval)
{
    CV_Assert( hdr );
    int i, d = hdr->dims;
    size_t h = hashval ? *hashval : hash(idx);
    size_t hidx = h & (hdr->hashtab.size() - 1), nidx = hdr->hashtab[hidx], previdx=0;
    uchar* pool = &hdr->pool[0];
    while( nidx != 0 )
    {
        Node* elem = (Node*)(pool + nidx);
        if( elem->hashval == h )
        {
            for( i = 0; i < d; i++ )
                if( elem->idx[i] != idx[i] )
                    break;
            if( i == d )
                break;
        }
        previdx = nidx;
        nidx = elem->next;
    }

    if( nidx )
        removeNode(hidx, nidx, previdx);
}

void SparseMat::resizeHashTab(size_t newsize)
{
    newsize = std::max(newsize, (size_t)8);
    if((newsize & (newsize-1)) != 0)
3720
        newsize = (size_t)1 << cvCeil(std::log((double)newsize)/CV_LOG2);
3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776

    size_t i, hsize = hdr->hashtab.size();
    vector<size_t> _newh(newsize);
    size_t* newh = &_newh[0];
    for( i = 0; i < newsize; i++ )
        newh[i] = 0;
    uchar* pool = &hdr->pool[0];
    for( i = 0; i < hsize; i++ )
    {
        size_t nidx = hdr->hashtab[i];
        while( nidx )
        {
            Node* elem = (Node*)(pool + nidx);
            size_t next = elem->next;
            size_t newhidx = elem->hashval & (newsize - 1);
            elem->next = newh[newhidx];
            newh[newhidx] = nidx;
            nidx = next;
        }
    }
    hdr->hashtab = _newh;
}

uchar* SparseMat::newNode(const int* idx, size_t hashval)
{
    const int HASH_MAX_FILL_FACTOR=3;
    assert(hdr);
    size_t hsize = hdr->hashtab.size();
    if( ++hdr->nodeCount > hsize*HASH_MAX_FILL_FACTOR )
    {
        resizeHashTab(std::max(hsize*2, (size_t)8));
        hsize = hdr->hashtab.size();
    }
    
    if( !hdr->freeList )
    {
        size_t i, nsz = hdr->nodeSize, psize = hdr->pool.size(),
            newpsize = std::max(psize*2, 8*nsz);
        hdr->pool.resize(newpsize);
        uchar* pool = &hdr->pool[0];
        hdr->freeList = std::max(psize, nsz);
        for( i = hdr->freeList; i < newpsize - nsz; i += nsz )
            ((Node*)(pool + i))->next = i + nsz;
        ((Node*)(pool + i))->next = 0;
    }
    size_t nidx = hdr->freeList;
    Node* elem = (Node*)&hdr->pool[nidx];
    hdr->freeList = elem->next;
    elem->hashval = hashval;
    size_t hidx = hashval & (hsize - 1);
    elem->next = hdr->hashtab[hidx];
    hdr->hashtab[hidx] = nidx;

    int i, d = hdr->dims;
    for( i = 0; i < d; i++ )
        elem->idx[i] = idx[i];
3777
    size_t esz = elemSize();
3778
    uchar* p = &value<uchar>(elem);
3779
    if( esz == sizeof(float) )
3780
        *((float*)p) = 0.f;
3781
    else if( esz == sizeof(double) )
3782 3783
        *((double*)p) = 0.;
    else
3784
        memset(p, 0, esz);
3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978
    
    return p;
}


void SparseMat::removeNode(size_t hidx, size_t nidx, size_t previdx)
{
    Node* n = node(nidx);
    if( previdx )
    {
        Node* prev = node(previdx);
        prev->next = n->next;
    }
    else
        hdr->hashtab[hidx] = n->next;
    n->next = hdr->freeList;
    hdr->freeList = nidx;
    --hdr->nodeCount;
}


SparseMatConstIterator::SparseMatConstIterator(const SparseMat* _m)
: m((SparseMat*)_m), hashidx(0), ptr(0)
{
    if(!_m || !_m->hdr)
        return;
    SparseMat::Hdr& hdr = *m->hdr;
    const vector<size_t>& htab = hdr.hashtab;
    size_t i, hsize = htab.size();
    for( i = 0; i < hsize; i++ )
    {
        size_t nidx = htab[i];
        if( nidx )
        {
            hashidx = i;
            ptr = &hdr.pool[nidx] + hdr.valueOffset;
            return;
        }
    }
}

SparseMatConstIterator& SparseMatConstIterator::operator ++()
{
    if( !ptr || !m || !m->hdr )
        return *this;
    SparseMat::Hdr& hdr = *m->hdr;
    size_t next = ((const SparseMat::Node*)(ptr - hdr.valueOffset))->next;
    if( next )
    {
        ptr = &hdr.pool[next] + hdr.valueOffset;
        return *this;
    }
    size_t i = hashidx + 1, sz = hdr.hashtab.size();
    for( ; i < sz; i++ )
    {
        size_t nidx = hdr.hashtab[i];
        if( nidx )
        {
            hashidx = i;
            ptr = &hdr.pool[nidx] + hdr.valueOffset;
            return *this;
        }
    }
    hashidx = sz;
    ptr = 0;
    return *this;
}


double norm( const SparseMat& src, int normType )
{
    SparseMatConstIterator it = src.begin();
    
    size_t i, N = src.nzcount();
    normType &= NORM_TYPE_MASK;
    int type = src.type();
    double result = 0;
    
    CV_Assert( normType == NORM_INF || normType == NORM_L1 || normType == NORM_L2 );
    
    if( type == CV_32F )
    {
        if( normType == NORM_INF )
            for( i = 0; i < N; i++, ++it )
                result = std::max(result, std::abs((double)*(const float*)it.ptr));
        else if( normType == NORM_L1 )
            for( i = 0; i < N; i++, ++it )
                result += std::abs(*(const float*)it.ptr);
        else
            for( i = 0; i < N; i++, ++it )
            {
                double v = *(const float*)it.ptr; 
                result += v*v;
            }
    }
    else if( type == CV_64F )
    {
        if( normType == NORM_INF )
            for( i = 0; i < N; i++, ++it )
                result = std::max(result, std::abs(*(const double*)it.ptr));
        else if( normType == NORM_L1 )
            for( i = 0; i < N; i++, ++it )
                result += std::abs(*(const double*)it.ptr);
        else
            for( i = 0; i < N; i++, ++it )
            {
                double v = *(const double*)it.ptr; 
                result += v*v;
            }
    }
    else
        CV_Error( CV_StsUnsupportedFormat, "Only 32f and 64f are supported" );
    
    if( normType == NORM_L2 )
        result = std::sqrt(result);
    return result;
}
    
void minMaxLoc( const SparseMat& src, double* _minval, double* _maxval, int* _minidx, int* _maxidx )
{
    SparseMatConstIterator it = src.begin();
    size_t i, N = src.nzcount(), d = src.hdr ? src.hdr->dims : 0;
    int type = src.type();
    const int *minidx = 0, *maxidx = 0;
    
    if( type == CV_32F )
    {
        float minval = FLT_MAX, maxval = -FLT_MAX;
        for( i = 0; i < N; i++, ++it )
        {
            float v = *(const float*)it.ptr;
            if( v < minval )
            {
                minval = v;
                minidx = it.node()->idx;
            }
            if( v > maxval )
            {
                maxval = v;
                maxidx = it.node()->idx;
            }
        }
        if( _minval )
            *_minval = minval;
        if( _maxval )
            *_maxval = maxval;
    }
    else if( type == CV_64F )
    {
        double minval = DBL_MAX, maxval = -DBL_MAX;
        for( i = 0; i < N; i++, ++it )
        {
            double v = *(const double*)it.ptr;
            if( v < minval )
            {
                minval = v;
                minidx = it.node()->idx;
            }
            if( v > maxval )
            {
                maxval = v;
                maxidx = it.node()->idx;
            }
        }
        if( _minval )
            *_minval = minval;
        if( _maxval )
            *_maxval = maxval;
    }
    else
        CV_Error( CV_StsUnsupportedFormat, "Only 32f and 64f are supported" );
    
    if( _minidx )
        for( i = 0; i < d; i++ )
            _minidx[i] = minidx[i];
    if( _maxidx )
        for( i = 0; i < d; i++ )
            _maxidx[i] = maxidx[i];
}

    
void normalize( const SparseMat& src, SparseMat& dst, double a, int norm_type )
{
    double scale = 1;
    if( norm_type == CV_L2 || norm_type == CV_L1 || norm_type == CV_C )
    {
        scale = norm( src, norm_type );
        scale = scale > DBL_EPSILON ? a/scale : 0.;
    }
    else
        CV_Error( CV_StsBadArg, "Unknown/unsupported norm type" );
    
    src.convertTo( dst, -1, scale );
}
3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997

////////////////////// RotatedRect //////////////////////
    
void RotatedRect::points(Point2f pt[]) const
{
    double _angle = angle*CV_PI/180.;
    float b = (float)cos(_angle)*0.5f;
    float a = (float)sin(_angle)*0.5f;
    
    pt[0].x = center.x - a*size.height - b*size.width;
    pt[0].y = center.y + b*size.height - a*size.width;
    pt[1].x = center.x + a*size.height - b*size.width;
    pt[1].y = center.y - b*size.height - a*size.width;
    pt[2].x = 2*center.x - pt[0].x;
    pt[2].y = 2*center.y - pt[0].y;
    pt[3].x = 2*center.x - pt[1].x;
    pt[3].y = 2*center.y - pt[1].y;
}

3998
Rect RotatedRect::boundingRect() const
3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009
{
    Point2f pt[4];
    points(pt);
    Rect r(cvFloor(min(min(min(pt[0].x, pt[1].x), pt[2].x), pt[3].x)),
           cvFloor(min(min(min(pt[0].y, pt[1].y), pt[2].y), pt[3].y)),
           cvCeil(max(max(max(pt[0].x, pt[1].x), pt[2].x), pt[3].x)),
           cvCeil(max(max(max(pt[0].y, pt[1].y), pt[2].y), pt[3].y)));
    r.width -= r.x - 1;
    r.height -= r.y - 1;
    return r;
}        
4010 4011
    
}
4012
 
4013
/* End of file. */