mirror of
https://github.com/opencv/opencv.git
synced 2025-06-07 17:44:04 +08:00
Missed one conversion of CV_TYPE to cv::DataType
This commit is contained in:
parent
00c2930709
commit
12dcb1555e
@ -18,7 +18,7 @@ template<typename T> struct step_functor : public thrust::unary_function<int, in
|
|||||||
__host__ __device__ step_functor(int columns_, int step_, int channels_ = 1) : columns(columns_), step(step_), channels(channels_) { };
|
__host__ __device__ step_functor(int columns_, int step_, int channels_ = 1) : columns(columns_), step(step_), channels(channels_) { };
|
||||||
__host__ step_functor(cv::cuda::GpuMat& mat)
|
__host__ step_functor(cv::cuda::GpuMat& mat)
|
||||||
{
|
{
|
||||||
CV_Assert(mat.depth() == CV_TYPE<T>::DEPTH);
|
CV_Assert(mat.depth() == cv::DataType<T>::depth);
|
||||||
columns = mat.cols;
|
columns = mat.cols;
|
||||||
step = mat.step / sizeof(T);
|
step = mat.step / sizeof(T);
|
||||||
channels = mat.channels();
|
channels = mat.channels();
|
||||||
|
Loading…
Reference in New Issue
Block a user