Is there any papers that describe the algorithm of the FindCornerSubPix function in openCV? I cannot find any documentation which describes it.
Is there any papers that describe the algorithm of the FindCornerSubPix function in openCV?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I believe from the source code (for version 2.1) it is using the image gradients to optimise location…
The documentation for the function also describe this – particular the nature of the objective function used:
http://opencv.willowgarage.com/documentation/c/imgproc_feature_detection.html?highlight=findcornersubpix#cvFindCornerSubPix
More explicit details of the operation are found in the file cvcornersubpix.cpp. Looking at this it can be clearly seen that the function is calculating the derivatives of the search area and building a Hessian matrix…
In other words, as I understand it, a standard Conjugate gradient method!
Version 2.2 of OpenCV (the most up-to-date) does not appear to have this function anymore.