2016-07-27 00:39:27 -0600 | commented question | findChessboardCorners returing false boolean value? You get false because you use wrong pattern size 8x6 instead 9x6. |
2016-07-26 02:57:04 -0600 | commented question | OpenCV 3 doxygen documentation still very counter intuitive I'm also missing pdf documentation for new OpenCV. |
2016-07-22 14:31:33 -0600 | answered a question | Camera calibration and aspect ratio The correct way is not using Also, for better accuracy I would recomend you calibrate camera with native resolution and then rescale camera matrix (distortion coefficents remain the same). For recovering scale (and maybe crop) parameters take some shots of calibration rig with native and working resolution. Then find transformation between corners coordinates on different resolution. The transformation will have a form: Also note that crop_x and crop_y should be integer values and scale_x and scale_y are probably rational values. Finaly rescale camera matrix parameters: UPD I just thought that your problem may be related to the wrong parameter |
2016-07-22 01:31:25 -0600 | answered a question | Measuring Planar Objects with a Calibrated Camera There's no analog for pointsToWorld as I know. You can find x and y (z is equal zero in such case) like this:
that gets you Here |
2016-07-21 02:13:40 -0600 | received badge | ● Enthusiast |
2016-07-19 07:49:33 -0600 | received badge | ● Supporter (source) |
2016-07-19 02:22:30 -0600 | answered a question | How to remove unwanted corners in images? If you make your images with equal size you can blend them together with simple addition. Alpha channel is not need for this. |
2016-07-18 07:59:51 -0600 | answered a question | Can't open image from Python You use invalid path. Try this (note 'r' before path): Or use |
2016-07-15 18:28:32 -0600 | received badge | ● Teacher (source) |
2016-07-15 08:27:07 -0600 | received badge | ● Editor (source) |
2016-07-15 07:54:33 -0600 | answered a question | Generating middle image using stereo image(two images) There's no single function solution. The final result depends on various conditions. I would do the folowing:
|
2016-07-14 10:23:49 -0600 | answered a question | Calibration with circle grid - center of gravity is not the circle center - is this implemented? As I know cv::findCirclesGrid uses SimpleBlobDetector by default. This detector searches a center of a circle and not corrects perspective distortions. Further in function cv::findCirclesGrid input image or contours are not used. So, the answer to you question is now. But, the interface of cv::findCirclesGrid function has detector parameter. That means you can write your own detector which corrects centers of circles. |