doubts in opencv tutorial4 in eclipse
public void onCameraViewStarted(int width, int height) {
mRgba = new Mat(height, width, CvType.CV_8UC4);
mIntermediateMat = new Mat(height, width, CvType.CV_8UC4);
mGrayMat = new Mat(height, width, CvType.CV_8UC1);
can someone explain me what are these CvType.CV_8UC4 and CV_8UC1??? this is from the tutorials provided by opencv for android