In Computer Vision field camera-calibration is the process of finding the true parameters of the camera that produced a given photograph or video. Usually, the camera parameters are represented in a 3 × 4 matrix called the camera matrix.

learn more… | top users | synonyms

0
votes
0answers
26 views

Can't remove distortion

i'm making a program to calibrate a camera and remove the distortion with a chessboard using OpenCV in Java. I've been reading "Learning OpenCV" and my code is quite similar but even the program run ...
0
votes
0answers
41 views

camera calibration using a list of images

After using opencv camera calibration.cpp and successfully creating a out_camera_data.xml file for my webcam. Now I would like to use a list of images. I have amended the in_VID5.xml config file to ...
0
votes
1answer
83 views

OpenCV Stereo Calibration (example code questions)

At the moment I am implementing the calibration method(s) for stereo vision. I am using the OpenCV library. There is an example in the sample folder, but I have some questions about the ...
1
vote
0answers
21 views

Techniques for stitching aerial shots in opencv (or other)

I'm trying to use the openCV stitcher class to put together aerial imagery. The problem I have though is that the Stitcher class is setup for a rotating camera and I now have a translating and ...
1
vote
1answer
45 views

Why does the focal length in the camera intrinsics matrix have two dimensions?

In the pinhole camera model there is only one focal length which is between the principal point and the camera center. However, after calculating the camera's intrinsic parameters, the matrix ...
0
votes
1answer
110 views

Camera pose estimation (OpenCV PnP)

I am trying to get a global pose estimate from an image of four fiducials with known global positions using my webcam. I have checked many stackexchange questions and a few papers and I cannot seem ...
3
votes
1answer
74 views

Correct spatial camera orientation

I'm performing a camera calibration as described in OpenCV calibration sample (which works fine for lens correction). Additionally I now want to do a spatial correction. Means when the camera is not ...
0
votes
0answers
67 views

Assert thrown by OpenCV checkVector() on otherwise valid vector<vector<Point3f>>

Been chasing this bug all night, so please forgive any incoherence. I'm attempting to use the OpenCV's calibrateCamera() to extract intrinsic and extrinsic parameters from a set of fifteen pictures ...
1
vote
1answer
76 views

how can i get the camera projection matrix out of calibrateCamera() return values

I am trying to get a 3x4 camera matrix for triangulation process but calibrateCamera() returns only 3x3 and 4x1 matrices. How can i get the 3x4 out of those matrices? Thanks in advance!!
0
votes
1answer
34 views

CameraCalibration with Open CV

I try to calibrate a camera with python and opnecv. I use a video-file instead of a webcam live stream. Everything seems to work except of the last step. This is: print "now get ready, camera is ...
0
votes
1answer
63 views

iPhone 5s Camera Calibration Parameters

I was wondering if anyone out there had any reliable intrinsic or extrinsic parameters they would be willing to share with regards to the iPhone 5s camera? I'm working in OpenCV and would like to ...
0
votes
0answers
61 views

Analysis of Camera Calibration results and strange 3D coordinates after rotation,translation extraction

I did the camera calibration with Matlab ToolBox. I took 6 images with an iPhone 4S with camera details as following: The images are about ~2 MB in JPEG format with following details: Here is ...
1
vote
1answer
133 views

3d camera calibration using opencv

I'm working on the calibration of a camera using opencv, I run the given sample project, my question is how to set the metric system in the input data for ex.: <!-- The size of a square in some ...
5
votes
1answer
109 views

Auto white balancing for camera

I am developing a sample camera and I am able to control image sensor directly. The sensors gives out Bayer image and I need to do show images as live view. I looked at debayering codes and also ...
0
votes
2answers
201 views

OpenCV camera calibration - general understanding of working principle

I'm playing around with camera calibration based on the code from http://dsynflo.blogspot.de/2010/03/camera-calibration-using-opencv.html This generates an intrinsic matrix and distortion ...
1
vote
0answers
50 views

cvCalibrateCamera2 returns matrix with NaN-elements

I'm trying to do a camera calibration using cvCalibrateCamera2() but run into a strage problem: the returned intrinsic_matrix and distortion_coeffs contain invalid floats (=NaN). That's what I'm ...
1
vote
1answer
112 views

Root Mean Square for OpenCV Camera Calibration is too High

I am attempting to calibrate my single webcam using opencv cv2 in python. I am using the cv2.findChessboardCorners and cv2.calibrateCamera functions. However, my root mean square returned from the ...
0
votes
0answers
183 views

How do i get the X and Y coordinates or area from a square

I currently have a program that i am trying to use in order to calibrate a camera in relation to the level of zoom. The program aims to detect the size of an object by selecting two points on the ...
0
votes
0answers
33 views

Calibration of different image sensors to get rectified images

I am trying to calibrate different image sensors like grayscale camera, far infrared camera, Laser scanner and long range radars. I am facing problem with the calibration of all the sensors so that I ...
4
votes
2answers
299 views

Determine extrinsic camera with opencv to opengl with world space object

I'm using opencv and openframeworks (ie. opengl) to calculate a camera (world transform and projection matrixes) from an image (and later, several images for triangulation). For the purposes of ...
0
votes
1answer
59 views

robust camera calibration

I will try and be specific about my question, firstly i am doing a project for 3d image reconstruction using a camera. I have completed camera calibration but it is not robust occlussions, such as ...
-2
votes
1answer
77 views

How compute cartesian coordination given the intrinsic and distortion matrices [closed]

I have made a camera calibration and I have obtained the matices: Here the intrinsic: <?xml version="1.0"?> <opencv_storage> <Intrinsics type_id="opencv-matrix"> ...
1
vote
1answer
109 views

Calibrating camera with a glass-covered checkerboard

I need to find intrinsic calibration parameters of a single. To do this I take several images of checkerboard patten from different angles and then use calibration software. To make the calibration ...
0
votes
0answers
330 views

Unable to make OpenCV-2.4.4 for androidcamera

I am trying to buid OpenCv-2.4.4 in Windows for androidcamera modules present in the same, suing CMake GUI. I was successfully able to configure and build packages for installation of java module, ...
2
votes
1answer
72 views

Circular Motion of calibrated camera with given degree

according to this project (carving a dinosaur) I'd like to create a dataset with 36 images taken from an object and estimate the appropriate camera projection matrix. Therefore I calibrated my ...
8
votes
1answer
441 views

FindChessboardCorners cannot detect chessboard on very large images by long focal length lens

I can use FindChessboardCorners functions for images that less than 15 Mega pixel such like 2k x 1.5k. however when I use it on the image from DSLR, the resolution at 3700x5300, it doesn't work. I ...
0
votes
1answer
145 views

OpenCV and python to calibrate a camera

I'm trying to use OpenCV and python to calibrate a camera. This is the OpenCV code: CalibrateCamera2(objectPoints, imagePoints, pointCounts, imageSize, cameraMatrix, distCoeffs, rvecs, tvecs, ...
1
vote
1answer
40 views

Singular value decomposition

I started to learn something about camera matrix and its solution method. There are some methods which in many of them I saw using of singular value decomposition of a matrix but I can't understand ...
2
votes
2answers
151 views

Doubts in camera calibration

I am working on a project based on machine vision . Wide angle lens with high resolution pinhole camera is being used. Working distance : Distance between Camera and object . The resolution will ...
0
votes
1answer
372 views

camera calibration opencv

Hi i am doing a project to do an image 3d reconstruction. I am the phase of calibrating the camera, which is taking a long time to do. But when i compile the code and display the checkerboard in front ...
0
votes
1answer
104 views

OpenCV: unable to get correct euler angles for calibration of single camera

I posted a few weeks ago because I was having trouble getting the correct translation vector in opencv with python when I was calibrating my camera (Python Opencv SolvePnP yields wrong translation ...
1
vote
0answers
146 views

Depth Calibration Target

I am trying to gather as much resources as possible regarding to depth calibration of Kinect camera. One question which is not that trivial for me is the following: What kind of calibration target ...
1
vote
0answers
146 views

Why is object boundaries not clear in opencv stereo correspondence

I got 2 pictures which is almost parallel, and not positioned very far from each other. I'm using OpenCV to try to create a disparity map (Stereo correspondence). Because I'm trying to use it in a ...
2
votes
2answers
379 views

create opencv camera matrix for iPhone 5 solvepnp

I am developing an application for the iPhone using opencv. I have to use the method solvePnPRansac: http://opencv.willowgarage.com/documentation/cpp/camera_calibration_and_3d_reconstruction.html ...
0
votes
0answers
439 views

Kinect Point Cloud Color Misplacement

I am working on a Kinect Point Cloud Application vi kinect SDK 1.5. So far, I am able to put the kinect depth to real world coordinates and gain the point cloud. In order to achieve that I calibrated ...
5
votes
1answer
586 views

Python Opencv SolvePnP yields wrong translation vector

I am attempting to calibrate and find the location and rotation of a single virtual camera in Blender 3d using homography. I am using Blender so that I can double check my results before I move on to ...
1
vote
1answer
591 views

OpenCV solvePnP barreldistoriton

I'm using OpenCVs solvePnP to get the pose/positon of the camera. I'm doing this by using points selected by the user, on an image that is already calibrated and have applied the fix for radial and ...
1
vote
1answer
118 views

Check camera calibration efficiency, with opencv

I am working on my sterio camera calibration using OpenCV. I have been following this tutorial and i have reached some good result. But the question is, how can check that my work is good enough to ...
0
votes
1answer
251 views

Extrinsic parameters from OpenCV

I'm using OpenCV to calibrate a stereo camera pair. I've taken various calibration photos and I have a satisfactory fit for the intrinsic parameters using cv2.calibrateCamera. However, it's not ...
3
votes
1answer
207 views

Discribing nonlinear transformation between two images, using homography

A one to one point matching has already been established between the blue dots on the two images. The image2 is the distorted version of the image1. The distortion model seems to be eyefish lens ...
0
votes
0answers
161 views

Kinect Camera Calibration with EmguCV library

I'm working on 3D face recognition using Kinect and EmuCV library. To detect a face I should use both the color and depth stream (RGB camera and IR camera). My question is how to do a Kinect camera ...
2
votes
1answer
219 views

opencv InitUndistortRectifyMap map size

I am doing image rectification with opencv but a want to use the maps (mapx and mapy) that the c function cvInitUndistortRectifyMap returns to do the mapping myself (which is usually done by cvremap). ...
6
votes
2answers
306 views

OpenCV calibration trouble

I'm working on an OpenCV project, and I'm on to calibration. I believe I've implemented the code correctly; however I'm getting different values for the camera matrix, sometimes wildly varying. After ...
1
vote
1answer
117 views

distortion coefficents with opencv camera calibraton

I'm writing in visual c++ using opencv library. I used calibrateCamera function with a checkboard pattern to extract intrinsic, extrinsic and distortion values. The problem is that I don't know how to ...
0
votes
1answer
80 views

outputs parameters of cvCalibrateCamera

I'm using OpenCV calibrateCamera function to extract intrinsic end extrinsic parameters of my camera. I have a big problem with the extrinsic one (rotation and translation) because the rotation ...
1
vote
0answers
90 views

What is the purpose of calibrating in OpenCV?

I am starting a new robotics project (with cameras), so i need to calibrate its two cameras. My question is: why do i need to calibrate cameras? Does it have any relation with defining object ...
0
votes
1answer
249 views

Camera Calibration (cv.calibrateCamera and cv.InitUndistortMap)

The cv.InitUndistortMap opencv function is not working. I get the intrinsic and distortion matrix, but I can not use this values to fix my image. I get this error: ...
0
votes
0answers
79 views

Calibration with two cams in opencv

I am newbie in opencv and i want to work in object detection (cup over a table) and i have two cameras one on the front of the object and the other on the top view. So i order to define the real ...
1
vote
0answers
148 views

What camera calibration algorithm does OpenCV use for non co-planar calibration rig?

I have been working with Zhang's homography technique till now for my camera calibration. But the accuracy of the calibration is not sufficient (After taking necessary actions to improve: Example : ...
0
votes
0answers
73 views

How find essential matrix?

How to find the Essential matrix using the Rotation and Translation vectors which can be found using camera calibration? I used the Matlab camera calibration toolbox to calibrate the two cameras. Here ...

1 2 3 4