Ask Your Question

Paul Doliotis's profile - activity

2019-05-30 04:49:51 -0600 received badge  Notable Question (source)
2018-01-18 01:44:42 -0600 received badge  Popular Question (source)
2014-02-04 14:43:58 -0600 received badge  Teacher (source)
2014-02-04 02:06:54 -0600 received badge  Self-Learner (source)
2013-07-16 16:59:15 -0600 answered a question findChessboardCorners is NOT working for calibration images

I just found out that calling findChessboardCorners with these flags, seems to be working for all images:

found = findChessboardCorners( view, s.boardSize, pointBuf, CV_CALIB_CB_ADAPTIVE_THRESH | CV_CALIB_CB_FILTER_QUADS);
2013-07-01 15:13:03 -0600 answered a question calibration transformation matrices

Actually the answer is:

from calibration grid coordinate system (aka World coordinate system) to the camera calibration system

2013-06-28 10:02:55 -0600 asked a question calibration transformation matrices

Hi all,

I am using the OpenCV calibration code from this tutorial: http://docs.opencv.org/doc/tutorials/calib3d/camera_calibration/camera_calibration.html#cameracalibrationopencv

Here is the arguments list for the calibration function: runCalibration(s,imageSize, cameraMatrix, distCoeffs, imagePoints, rvecs, tvecs, reprojErrs, totalAvgErr);

rvecs and tvecs are essentially the rotational and transnational components of the Homogeneous transformation matrix.

My question is the following:

does the transformation matrix( using rvecs, tvecs) take us from:

calibration grid coordinate system to the camera coordinate system

or

from camera coordinate system to the calibration grid coordinate system.

Thanks,

Paul

2013-06-19 17:13:44 -0600 received badge  Student (source)
2013-06-19 15:13:20 -0600 asked a question findChessboardCorners is NOT working for calibration images

Hey all,

I am giving some images as input to findChessboardCorners but it fails to detect the corners. I believe the calibration images are not very challenging for automatic corner extractions. Here are two sample images: http://vlm1.uta.edu/~doliotis/temp/opencv_calibration/9.bmp http://vlm1.uta.edu/~doliotis/temp/opencv_calibration/old_0.bmp

Any ideas why findChessboardCorners is failing? Are the squares too small? Thanks, Paul

p.s. I have verified that the function works with other images. I am using opencv 243