minor fix
This commit is contained in:
parent
ffe7bdf69c
commit
2d36ba2175
@ -49,7 +49,7 @@
|
|||||||
using namespace cv::gpu;
|
using namespace cv::gpu;
|
||||||
using namespace cv::gpu::impl;
|
using namespace cv::gpu::impl;
|
||||||
|
|
||||||
__constant__ __align__(16) double scalar_d[4];
|
__constant__ double scalar_d[4];
|
||||||
|
|
||||||
namespace mat_operators
|
namespace mat_operators
|
||||||
{
|
{
|
||||||
@ -267,7 +267,7 @@ namespace cv
|
|||||||
|
|
||||||
CopyToFunc func = tab[depth];
|
CopyToFunc func = tab[depth];
|
||||||
|
|
||||||
if (func == 0) error("Operation \'ConvertTo\' doesn't supported on your GPU model", __FILE__, __LINE__);
|
if (func == 0) cv::gpu::error("Unsupported convert operation", __FILE__, __LINE__);
|
||||||
|
|
||||||
func(mat_src, mat_dst, mask, channels);
|
func(mat_src, mat_dst, mask, channels);
|
||||||
}
|
}
|
||||||
@ -321,7 +321,7 @@ namespace cv
|
|||||||
|
|
||||||
SetToFunc_without_mask func = tab[depth];
|
SetToFunc_without_mask func = tab[depth];
|
||||||
|
|
||||||
if (func == 0) error("Operation \'ConvertTo\' doesn't supported on your GPU model", __FILE__, __LINE__);
|
if (func == 0) cv::gpu::error("Unsupported convert operation", __FILE__, __LINE__);
|
||||||
|
|
||||||
func(mat, channels);
|
func(mat, channels);
|
||||||
}
|
}
|
||||||
@ -350,7 +350,7 @@ namespace cv
|
|||||||
|
|
||||||
SetToFunc_with_mask func = tab[depth];
|
SetToFunc_with_mask func = tab[depth];
|
||||||
|
|
||||||
if (func == 0) error("Operation \'ConvertTo\' doesn't supported on your GPU model", __FILE__, __LINE__);
|
if (func == 0) cv::gpu::error("Unsupported convert operation", __FILE__, __LINE__);
|
||||||
|
|
||||||
func(mat, mask, channels);
|
func(mat, mask, channels);
|
||||||
}
|
}
|
||||||
@ -360,54 +360,54 @@ namespace cv
|
|||||||
//////////////////////////////// ConvertTo ////////////////////////////////
|
//////////////////////////////// ConvertTo ////////////////////////////////
|
||||||
///////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
typedef void (*CvtFunc)(const DevMem2D& src, DevMem2D& dst, size_t width, size_t height, double alpha, double beta);
|
typedef void (*CvtFunc)(const DevMem2D& src, DevMem2D& dst, size_t width, size_t height, double alpha, double beta);
|
||||||
|
|
||||||
template<typename T, typename DT>
|
template<typename T, typename DT>
|
||||||
void cvt_(const DevMem2D& src, DevMem2D& dst, size_t width, size_t height, double alpha, double beta)
|
void cvt_(const DevMem2D& src, DevMem2D& dst, size_t width, size_t height, double alpha, double beta)
|
||||||
{
|
{
|
||||||
const int shift = ::mat_operators::ReadWriteTraits<T, DT, sizeof(T), sizeof(DT)>::shift;
|
const int shift = ::mat_operators::ReadWriteTraits<T, DT, sizeof(T), sizeof(DT)>::shift;
|
||||||
|
|
||||||
dim3 block(32, 8);
|
dim3 block(32, 8);
|
||||||
dim3 grid(divUp(width, block.x * shift), divUp(height, block.y));
|
dim3 grid(divUp(width, block.x * shift), divUp(height, block.y));
|
||||||
|
|
||||||
::mat_operators::kernel_convert_to<T, DT><<<grid, block>>>(src.ptr, src.step, dst.ptr, dst.step, width, height, alpha, beta);
|
::mat_operators::kernel_convert_to<T, DT><<<grid, block>>>(src.ptr, src.step, dst.ptr, dst.step, width, height, alpha, beta);
|
||||||
|
|
||||||
cudaSafeCall( cudaThreadSynchronize() );
|
cudaSafeCall( cudaThreadSynchronize() );
|
||||||
}
|
}
|
||||||
|
|
||||||
extern "C" void convert_to(const DevMem2D& src, int sdepth, DevMem2D dst, int ddepth, size_t width, size_t height, double alpha, double beta)
|
extern "C" void convert_to(const DevMem2D& src, int sdepth, DevMem2D dst, int ddepth, size_t width, size_t height, double alpha, double beta)
|
||||||
{
|
{
|
||||||
static CvtFunc tab[8][8] =
|
static CvtFunc tab[8][8] =
|
||||||
{
|
{
|
||||||
{cvt_<uchar, uchar>, cvt_<uchar, schar>, cvt_<uchar, ushort>, cvt_<uchar, short>,
|
{cvt_<uchar, uchar>, cvt_<uchar, schar>, cvt_<uchar, ushort>, cvt_<uchar, short>,
|
||||||
cvt_<uchar, int>, cvt_<uchar, float>, cvt_<uchar, double>, 0},
|
cvt_<uchar, int>, cvt_<uchar, float>, cvt_<uchar, double>, 0},
|
||||||
|
|
||||||
{cvt_<schar, uchar>, cvt_<schar, schar>, cvt_<schar, ushort>, cvt_<schar, short>,
|
{cvt_<schar, uchar>, cvt_<schar, schar>, cvt_<schar, ushort>, cvt_<schar, short>,
|
||||||
cvt_<schar, int>, cvt_<schar, float>, cvt_<schar, double>, 0},
|
cvt_<schar, int>, cvt_<schar, float>, cvt_<schar, double>, 0},
|
||||||
|
|
||||||
{cvt_<ushort, uchar>, cvt_<ushort, schar>, cvt_<ushort, ushort>, cvt_<ushort, short>,
|
{cvt_<ushort, uchar>, cvt_<ushort, schar>, cvt_<ushort, ushort>, cvt_<ushort, short>,
|
||||||
cvt_<ushort, int>, cvt_<ushort, float>, cvt_<ushort, double>, 0},
|
cvt_<ushort, int>, cvt_<ushort, float>, cvt_<ushort, double>, 0},
|
||||||
|
|
||||||
{cvt_<short, uchar>, cvt_<short, schar>, cvt_<short, ushort>, cvt_<short, short>,
|
{cvt_<short, uchar>, cvt_<short, schar>, cvt_<short, ushort>, cvt_<short, short>,
|
||||||
cvt_<short, int>, cvt_<short, float>, cvt_<short, double>, 0},
|
cvt_<short, int>, cvt_<short, float>, cvt_<short, double>, 0},
|
||||||
|
|
||||||
{cvt_<int, uchar>, cvt_<int, schar>, cvt_<int, ushort>,
|
{cvt_<int, uchar>, cvt_<int, schar>, cvt_<int, ushort>,
|
||||||
cvt_<int, short>, cvt_<int, int>, cvt_<int, float>, cvt_<int, double>, 0},
|
cvt_<int, short>, cvt_<int, int>, cvt_<int, float>, cvt_<int, double>, 0},
|
||||||
|
|
||||||
{cvt_<float, uchar>, cvt_<float, schar>, cvt_<float, ushort>,
|
{cvt_<float, uchar>, cvt_<float, schar>, cvt_<float, ushort>,
|
||||||
cvt_<float, short>, cvt_<float, int>, cvt_<float, float>, cvt_<float, double>, 0},
|
cvt_<float, short>, cvt_<float, int>, cvt_<float, float>, cvt_<float, double>, 0},
|
||||||
|
|
||||||
{cvt_<double, uchar>, cvt_<double, schar>, cvt_<double, ushort>,
|
{cvt_<double, uchar>, cvt_<double, schar>, cvt_<double, ushort>,
|
||||||
cvt_<double, short>, cvt_<double, int>, cvt_<double, float>, cvt_<double, double>, 0},
|
cvt_<double, short>, cvt_<double, int>, cvt_<double, float>, cvt_<double, double>, 0},
|
||||||
|
|
||||||
{0,0,0,0,0,0,0,0}
|
{0,0,0,0,0,0,0,0}
|
||||||
};
|
};
|
||||||
|
|
||||||
CvtFunc func = tab[sdepth][ddepth];
|
CvtFunc func = tab[sdepth][ddepth];
|
||||||
if (func == 0)
|
if (func == 0)
|
||||||
cv::gpu::error("Unsupported convert operation", __FILE__, __LINE__);
|
cv::gpu::error("Unsupported convert operation", __FILE__, __LINE__);
|
||||||
func(src, dst, width, height, alpha, beta);
|
func(src, dst, width, height, alpha, beta);
|
||||||
}
|
}
|
||||||
} // namespace impl
|
} // namespace impl
|
||||||
} // namespace gpu
|
} // namespace gpu
|
||||||
} // namespace cv
|
} // namespace cv
|
||||||
|
Loading…
x
Reference in New Issue
Block a user