cclim

Results 1 issues of cclim

I capture a frame from webcam using this line of code: `webcam.Read(&frame)` and then convert it into grayscale using these lines of code: `grayImg := gocv.NewMat()` `gocv.CvtColor(frame, &grayImg, gocv.ColorBGRToGray)` and...