From Reference 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.
1 | initial version |
From Reference 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.
2 | No.2 Revision |
From Reference its given that
what is this "int type". Is it something like CV_8UC3 ..etc, that we use for "Mat" type.
3 | No.3 Revision |
From Reference its given that
//! constructs GpuMat of the specified size and type
type
GpuMat(int rows, int cols, int type);
GpuMat(Size size, int type);type);
what is this "int type". Is it something like CV_8UC3 ..etc, that we use for "Mat" type.
4 | No.4 Revision |
From Reference 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.