Commit c62931f0 authored by Alexander Alekhin's avatar Alexander Alekhin

Merge pull request #7234 from taketwo:is-continuous-gpu-mat

parents d102ea96 765dd309
......@@ -1998,6 +1998,9 @@ bool _InputArray::isContinuous(int i) const
return vv[i].isContinuous();
}
if( k == CUDA_GPU_MAT )
return i < 0 ? ((const cuda::GpuMat*)obj)->isContinuous() : true;
CV_Error(CV_StsNotImplemented, "Unknown/unsupported array type");
return false;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment