From [Reference](http://docs.opencv.org/3.0-beta/modules/cuda/doc/data_structures.html)
its given that
//! constructs GpuMat of the specified size and type
GpuMat(int rows, int cols, int type);
GpuMat(Size size, int type);
what is this "int type". Is it something like CV_8UC3 ..etc, that we use for "Mat" type.
It is given that
int cv::cuda::GpuMat::type ( ) const
will returns element type. I dont understand what is meant by "element type" and what should be its value.
Please help.
↧