Fixed several merge issues

This commit is contained in:
Maksim Shabunin
2016-07-13 11:45:32 +03:00
parent 74b83cfce5
commit 2a350b11dd
2 changed files with 17 additions and 23 deletions

View File

@@ -46,12 +46,3 @@
#endif
#include "opencv2/calib3d.hpp"
// Performs a fast check if a chessboard is in the input image. This is a workaround to
// a problem of cvFindChessboardCorners being slow on images with no chessboard.
// This method works using a binary image as input
// - src: input binary image
// - size: chessboard size
// Returns 1 if a chessboard can be in this image and findChessboardCorners should be called,
// 0 if there is no chessboard, -1 in case of error
CVAPI(int) cvCheckChessboardBinary(IplImage* src, CvSize size);