OpenCV finding corners of contours
问题 I am completely new to OpenCV. For practice I decided to do a "Sudoku Solver". So far I was able to do this : public Mat processImage(final Mat originalImage, final CvCameraViewFrame frame) { image = originalImage.clone(); image = frame.gray(); /* We load the image in grayscale mode. We don't want to bother with the colour information, so just skip it. Next, we create a blank image of the same size. This image will hold the actual outer box of puzzle. */ Mat outerBox = new Mat(image.size(),