2010-07-14 23:55:16 +08:00
|
|
|
/*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"
|
|
|
|
|
|
|
|
using namespace cv;
|
|
|
|
using namespace cv::gpu;
|
|
|
|
|
|
|
|
//////////////////////////////// GpuMat ////////////////////////////////
|
|
|
|
|
|
|
|
void GpuMat::upload(const Mat& m)
|
|
|
|
{
|
|
|
|
CV_DbgAssert(!m.empty());
|
|
|
|
create(m.size(), m.type());
|
|
|
|
cudaSafeCall( cudaMemcpy2D(data, step, m.data, m.step, cols * elemSize(), rows, cudaMemcpyHostToDevice) );
|
|
|
|
}
|
|
|
|
|
|
|
|
void GpuMat::download(cv::Mat& m) const
|
|
|
|
{
|
|
|
|
CV_DbgAssert(!this->empty());
|
|
|
|
m.create(size(), type());
|
|
|
|
cudaSafeCall( cudaMemcpy2D(m.data, m.step, data, step, cols * elemSize(), rows, cudaMemcpyDeviceToHost) );
|
|
|
|
}
|
|
|
|
|
|
|
|
void GpuMat::copyTo( GpuMat& m ) const
|
|
|
|
{
|
|
|
|
CV_DbgAssert(!this->empty());
|
|
|
|
m.create(size(), type());
|
|
|
|
cudaSafeCall( cudaMemcpy2D(m.data, m.step, data, step, cols * elemSize(), rows, cudaMemcpyDeviceToDevice) );
|
|
|
|
cudaSafeCall( cudaThreadSynchronize() );
|
|
|
|
}
|
2010-07-17 19:17:29 +08:00
|
|
|
|
2010-07-14 23:55:16 +08:00
|
|
|
void GpuMat::copyTo( GpuMat& /*m*/, const GpuMat&/* mask */) const
|
2010-07-17 19:17:29 +08:00
|
|
|
{
|
2010-07-14 23:55:16 +08:00
|
|
|
CV_Assert(!"Not implemented");
|
|
|
|
}
|
2010-07-17 19:17:29 +08:00
|
|
|
|
2010-07-14 23:55:16 +08:00
|
|
|
void GpuMat::convertTo( GpuMat& /*m*/, int /*rtype*/, double /*alpha*/, double /*beta*/ ) const
|
|
|
|
{
|
|
|
|
CV_Assert(!"Not implemented");
|
|
|
|
}
|
|
|
|
|
2010-07-17 19:17:29 +08:00
|
|
|
GpuMat& GpuMat::operator = (const Scalar& s)
|
2010-07-14 23:55:16 +08:00
|
|
|
{
|
2010-07-17 19:17:29 +08:00
|
|
|
cv::gpu::impl::set_to_without_mask(*this, s.val, this->depth(), this->channels());
|
2010-07-14 23:55:16 +08:00
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2010-07-17 19:17:29 +08:00
|
|
|
GpuMat& GpuMat::setTo(const Scalar& s, const GpuMat& mask)
|
2010-07-14 23:55:16 +08:00
|
|
|
{
|
2010-07-19 15:56:27 +08:00
|
|
|
CV_Assert(mask.type() == CV_32F);
|
2010-07-17 19:17:29 +08:00
|
|
|
|
|
|
|
CV_DbgAssert(!this->empty());
|
|
|
|
|
|
|
|
this->channels();
|
|
|
|
this->depth();
|
|
|
|
|
|
|
|
if (mask.empty())
|
|
|
|
{
|
|
|
|
cv::gpu::impl::set_to_without_mask(*this, s.val, this->depth(), this->channels());
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
cv::gpu::impl::set_to_with_mask(*this, s.val, mask, this->depth(), this->channels());
|
|
|
|
}
|
|
|
|
|
2010-07-14 23:55:16 +08:00
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
GpuMat GpuMat::reshape(int new_cn, int new_rows) const
|
|
|
|
{
|
|
|
|
GpuMat hdr = *this;
|
|
|
|
|
|
|
|
int cn = channels();
|
|
|
|
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;
|
|
|
|
hdr.step = total_width * elemSize1();
|
|
|
|
}
|
|
|
|
|
|
|
|
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);
|
|
|
|
return hdr;
|
|
|
|
}
|
|
|
|
|
|
|
|
void GpuMat::create(int _rows, int _cols, int _type)
|
|
|
|
{
|
|
|
|
_type &= TYPE_MASK;
|
|
|
|
if( rows == _rows && cols == _cols && type() == _type && data )
|
|
|
|
return;
|
|
|
|
if( data )
|
|
|
|
release();
|
|
|
|
CV_DbgAssert( _rows >= 0 && _cols >= 0 );
|
|
|
|
if( _rows > 0 && _cols > 0 )
|
|
|
|
{
|
|
|
|
flags = Mat::MAGIC_VAL + _type;
|
|
|
|
rows = _rows;
|
|
|
|
cols = _cols;
|
|
|
|
|
2010-07-17 19:17:29 +08:00
|
|
|
size_t esz = elemSize();
|
|
|
|
|
2010-07-14 23:55:16 +08:00
|
|
|
void *dev_ptr;
|
|
|
|
cudaSafeCall( cudaMallocPitch(&dev_ptr, &step, esz * cols, rows) );
|
|
|
|
|
|
|
|
if (esz * cols == step)
|
|
|
|
flags |= Mat::CONTINUOUS_FLAG;
|
|
|
|
|
|
|
|
int64 _nettosize = (int64)step*rows;
|
|
|
|
size_t nettosize = (size_t)_nettosize;
|
2010-07-17 19:17:29 +08:00
|
|
|
|
2010-07-14 23:55:16 +08:00
|
|
|
datastart = data = (uchar*)dev_ptr;
|
2010-07-17 19:17:29 +08:00
|
|
|
dataend = data + nettosize;
|
|
|
|
|
2010-07-14 23:55:16 +08:00
|
|
|
refcount = (int*)fastMalloc(sizeof(*refcount));
|
|
|
|
*refcount = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void GpuMat::release()
|
|
|
|
{
|
|
|
|
if( refcount && CV_XADD(refcount, -1) == 1 )
|
|
|
|
{
|
|
|
|
fastFree(refcount);
|
2010-07-17 19:17:29 +08:00
|
|
|
cudaSafeCall( cudaFree(datastart) );
|
2010-07-14 23:55:16 +08:00
|
|
|
}
|
|
|
|
data = datastart = dataend = 0;
|
|
|
|
step = rows = cols = 0;
|
|
|
|
refcount = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|