Questions tagged [camera-calibration]

60 questions
9
votes
1 answer

Is it possible to hack camera calibration without having access to the camera?

Many times we have a stream of video to process without access to camera. Having access to camera matrix would be beneficial for various processing techniques. Is it possible to hack camera calibration without having access to the camera? I have a…
4
votes
1 answer

How are the scaling parameters included (extracted from) an essential matrix?

An essential matrix relates corresponding points between two images assuming that a camera satisfies the pinhole camera model, and can be expressed as: $$E=K'^TFK$$ where K is the calibration and F is the fundamental matrix. There are many tools to…
user17348
4
votes
1 answer

Obtain motion between image features by means of the homography matrix

I have been reading several really good answers about how to obtain camera pose (rotation, translation, etc), such as this one and this one, but I am not sure how this applies to my problem. My problem: I have two images of a planar scene (terrain…
user17348
4
votes
2 answers

camera calibration: why chessboards?

Chessboards are very frequently used for camera calibration, this website also talks a bit about why: wiki. One of the reasons is, that chessboards define many natural interest points. Now my (very simple?) question: Why don't we just use a white…
user1809923
  • 173
  • 2
  • 8
4
votes
2 answers

How to estimate radial distortion from lens characteristics?

Is there a way to estimate the radial distortion coefficients without calibration, given the lens characteristics, such as its diameter and its focal length? Typically for camera calibration a pinhole camera model is used, and then radial distortion…
Dima
  • 4,881
  • 18
  • 28
3
votes
0 answers

Reprojecting an image to another viewpoint using planar homography

I have an image rendered by a simulated camera in Unity. Using this image and the known (virtual) camera pose it corresponds to, I would like to render a new image from another viewpoint. Having read from a few sources (mainly Szeliski's book), I…
3
votes
0 answers

Correct Fish Eye camera Radial Distortion and blurry effect at the image edges

There are a lot of questions regarding this topic ,but I am trying to get a more clear picture from these questions. I am trying to calibrate a fish eye camera and I am using OpenCV omnidir class functions to find the camera intrinsics. I am getting…
2
votes
0 answers

How does image rotation affect the intrinsic camera parameters?

I am considering the problem of how to (manually) change camera model parameter to make it "valid" on a rotated image. This question tackles resizing, but does not consider lens distortion. My problem is this: Given 3x3 camera parameter matrix + 5…
2
votes
1 answer

How should calibration points be distributed?

I do camera calibration for a single camera with a chessboard pattern in opencv for the first time. The focus is fixed. I'm not sure how to do it, there seems to be many questions: How many images should be used for calibration? What pattern should…
null
  • 242
  • 1
  • 8
2
votes
2 answers

Camera calibration using multiple images

I am trying to get the hang of camera calibration. For this purpose, I have mainly watched this lecture on youtube: Lecture 12: Camera Model by UCF CRCV. I believe that I understood the main ideas: We basically deal with the question to relate 3D…
user1809923
  • 173
  • 2
  • 8
2
votes
2 answers

How to calibrate three orthogonal cameras?

I am trying to find out intrinsic parameters(focal length ,principle point,and lens distortion coefficients)as well as the extrinsic parameters(rotation and translation of each camera relative to the reference frame) of three cameras in the flowing…
2
votes
3 answers

Can you average out focal length from different camera calibration sessions?

If I perform a number of camera calibration routines at a fixed resolution, with various sizes of calibration patterns (like checkerboards), at various distances and get various values for focal lengths, could I just average them out? Would this…
2
votes
4 answers

Camera Calibration using Single Input Image

Given a camera, permanently located at the same position, angle and distance from what is being captured, and a single calibration image ( a row of vertical lines [ | | | | ] ), how would one go about using the image to apply correction (barrel…
2
votes
1 answer

How to warp a pixel patch to another camera

I have two cameras with rotation and translation starting from the world origin and a patch in the first camera's reference coordinate system. I want to warp this patch into the second camera's reference coordinate system. My idea is to transform…
aledalgrande
  • 237
  • 3
  • 12
1
vote
1 answer

How to apply rotation to extrinsic and intrinsic camera parameters post-calibration?

I currently have a set of intrinsic / extrinsic camera parameters, and am using them to project 3D world coordinates to the 2D image, using projection matrix $P = K[R | t]$. My problem is that this projects them onto the horizontal image, however I…
mhudnell
  • 11
  • 3
1
2 3 4