[Solved] CS6476 Project3-Camera Calibration and Fundamental Matrix Estimation with RANSAC

$25

File Name: CS6476_Project3-Camera_Calibration_and_Fundamental_Matrix_Estimation_with_RANSAC.zip
File Size: 753.6 KB

SKU: [Solved] CS6476 Project3-Camera Calibration and Fundamental Matrix Estimation with RANSAC Category: Tag:
5/5 - (1 vote)
  • Project materials including report template: zip
  • Required files: <your_gt_username>.zip, <your_gt_username>_proj3.pdf

Figure 1: An autonomous vehicle makes a right turn and captures two images a moment apart. The first image happens to contain an identical autonomous vehicle ahead of it. Epipolar lines show the camera locations given corresponding points in two views of a scene. Corresponding points in the two images are marked by circles of the same color. The two vehicles have the same hardware, and note that the epipole in the left image is located at the same height as the camera mounted on the other vehicle.

Overview

The goal of this project is to introduce you to camera and scene geometry. Specifically we will estimate the camera projection matrix, which maps 3D world coordinates to image coordinates, as well as the fundamental matrix, which relates points in one scene to epipolar lines in another. The camera projection matrix and fundamental matrix can each be estimated using point correspondences. To estimate the projection matrix (camera calibration), the input is corresponding 3D and 2D points. To estimate the fundamental matrix the input is corresponding 2D points across two images. You will start out by estimating the projection matrix and the fundamental matrix for a scene with ground truth correspondences. Then you will move on to estimating the fundamental matrix using point correspondences that are obtained using SIFT.

Remember these challenging images of Gaudis Episcopal Palace from project 2? By using RANSAC to find the fundamental matrix with the most inliers, we can filter away spurious matches and achieve near perfect point-to-point matching as shown below:

Figure 2: Gaudis Episcopal Palace.

Setup

  1. Install Miniconda. It doesnt matter whether you use Python 2 or 3 because we will create our own environment that uses python3 anyways.
  2. Download and extract the project starter code.
  3. Create a conda environment using the appropriate command. On Windows, open the installed Conda prompt to run the command. On MacOS and Linux, you can just use a terminal window to run the command, Modify the command based on your OS (linux, mac, or win): conda env create -f

proj3_env_<OS>.yml

  1. This will create an environment named cs6476 proj3. Activate it using the Windows command, activate cs6476_proj3 or the MacOS / Linux command, conda activate cs6476_proj3 or source activate cs6476_proj3
  2. Install the project package, by running pip install -e . inside the repo folder.
  3. Run the notebook using jupyter notebook ./proj3_code/proj3.ipynb
  4. After implementing all functions, ensure that all sanity checks are passing by running pytest proj3_unit_tests inside the repo folder.
  5. Generate the zip folder for the code portion of your submission once youve finished the project using python zip_submission.py gt_username <your_gt_username>

1 Part 1: Camera projection matrix

Introduction

The goal is to compute the projection matrix that goes from world 3D coordinates to 2D image coordinates. Recall that using homogeneous coordinates the equation for moving from 3D world to 2D camera coordinates is:

Another way of writing this equation is:

(m31X + m32Y + m33Z + m34)u = m11X + m12Y + m13Z + m14

0 = m11X + m12Y + m13Z + m14 m31uX m32uY m33uZ m34u

(m31X + m32Y + m33Z + m34)v = m21X + m22Y + m23Z + m24

0 = m21X + m22Y + m23Z + m24 m31vX m32vY m33vZ m34v

At this point, youre almost able to set up your linear regression to find the elements of the matrix M. Theres only one problemthe matrix M is only defined up to a scale. Therefore, these equations have many different possible solutions (in particular M = all zeros is a solution, which is not very helpful in our context). The way around this is to first fix a scale, and then do the regression. There are several options for doing this: 1) You can fix the last element, m34 = 1, and then find the remaining coefficients, or 2) you can use the singular value decomposition to directly solve the constrained optimization problem:

arg min kAxk

x

s.t. kxk = 1

To make sure that your code is correct, we are going to give you a set of normalized points in the files pts2d-norm-pic_a.txt and pts3d-norm.txt. If you solve for M using all the points, you should get a matrix that is a scaled equivalent of the following:

0.4583 0.2947 0.0139 0.0040

For example, this matrix will take the last normalized 3D point, < 1.2323,1.4421,0.4506,1.0 >, and project it to < u,v > of < 0.1419,0.4518 >, converting the homogeneous 2D point < us,vs,s > to its in homogeneous version (the transformed pixel coordinate in the image) by dividing by s.

First, you will need to implement the least squares regression to solve for M given the corresponding normalized points. The starter code will load 20 corresponding normalized 2D and 3D points. You have to write the code to set up the linear system of equations, solve for the unknown entries of M, and reshape it into the estimated projection matrix. To validate that youve found a reasonable projection matrix, weve provided evaluation code which computes the total residual between the projected 2D location of each 3D point and the actual location of that point in the 2D image. The residual is just the distance (square root of the sum of squared differences in u and v). This should be very small.

Once you have an accurate projection matrix M, it is possible to tease it apart into the more familiar and more useful matrix K of intrinsic parameters and matrix [R|T] of extrinsic parameters. For this project we will only ask you to estimate one particular extrinsic parameter: the camera center in world coordinates. Let us define M as being composed of a 3 3 matrix, Q, and a 4th column, m4:

(5)

From class we said that the center of the camera C could be found by:

C = Q1m4 (6)

To debug your code, if you use you the normalized 3D points to get the M given above, you would get a camera center of:

CnormA =< 1.5125,2.3515,0.2826 >

Weve also provided a visualization which will show the estimated 3D location of the camera with respect to the normalized 3D point coordinates.

In part1_projection_matrix.py, you will implement the following:

  • projection(): Projects homogeneous world coordinates [X,Y,Z,1] to non-homogeneous image coordinates (u,v). Given projection matrix M, the equations that accomplish this are (2) and (3).
  • calculate_projection_matrix(): Solves for the camera projection matrix using a system of equations set up from corresponding 2D and 3D points.
  • calculate_camera_center(): Computes the camera center location in world coordinates.

2 Part 2: Fundamental matrix

Figure 3: Two-camera setup. Reference: Szeliski, p. 682.

The next part of this project is estimating the mapping of points in one image to lines in another by means of the fundamental matrix. This will require you to use similar methods to those in part I. We will make use of the corresponding point locations listed in pts2d-pic_a.txt and pts2d-pic_b.txt. Recall that the definition of the fundamental matrix is:

= 0

for a point (u,v,1) in image A, and a point (u0,v0,1) in image B. See Appendix A for the full derivation. Note: the fundamental matrix is sometimes defined as the transpose of the above matrix with the left and right image points swapped. Both are valid fundamental matrices, but the visualization functions in the starter code assume you use the above form.

Another way of writing this matrix equations is:

= 0

Which is the same as:

= 0 (9)

Starting to see the regression equations? Given corresponding points you get one equation per point pair. With 8 or more points you can solve this (why 8?). Similar to part I, theres an issue here where the matrix is only defined up to scale and the degenerate zero solution solves these equations. So you need to solve using the same method you used in part I of first fixing the scale and then solving the regression.

The least squares estimate of F is full rank; however, a proper fundamental matrix is a rank 2. As such we must reduce its rank. In order to do this, we can decompose F using singular value decomposition into the matrices UV 0 = F. We can then construct a rank 2 matrix by setting the smallest singular value in to zero thus generating 2 . The fundamental matrix is then easily calculated as F = U2V 0. You can check your fundamental matrix estimation by plotting the epipolar lines using the plotting function provided in the starter code.

Coordinate normalization

As discussed in lecture, your estimate of the fundamental matrix can be improved by normalizing the coordinates before computing the fundamental matrix (see [1] by Hartley). It is suggested for this project you perform the normalization through linear transformations as described below to make the mean of the points zero and the average magnitude 1.0.

The transform matrix T is the product of the scale and offset matrices. cu and cv are the mean coordinates. To compute a scale s you could estimate the standard deviation after subtracting the means. Then the scale factor s would be the reciprocal of whatever estimate of the scale you are using. You could use one scale matrix based on the statistics of the coordinates from both images or you could do it per image.

In part2_fundamental_matrix.py you will need to use the scaling matrices to adjust your fundamental matrix so that it can operate on the original pixel coordinates. This is performed as follows:

Forig = TbT Fnorm Ta

In part2_fundamental_matrix.py, you will implement the following:

  • normalize_points(): Normalizes the 2D coordinates.
  • unnormalize_F(): Adjusts the fundamental matrix to account for the normalized coordinates. See Appendix B.
  • estimate_fundamental_matrix(): Calculates the fundamental matrix.

3 Part 3: Fundamental matrix with RANSAC

For two photographs of a scene its unlikely that youd have perfect point correspondence with which to do the regression for the fundamental matrix. So, next you are going to compute the fundamental matrix with point correspondences computed using SIFT. As discussed in class, least squares regression alone is not appropriate in this scenario due to the presence of multiple outliers. In order to estimate the fundamental matrix from this noisy data youll need to use RANSAC in conjunction with your fundamental matrix estimation.

Youll use these putative point correspondences and RANSAC to find the best fundamental matrix. You will iteratively choose some number of point correspondences (8, 9, or some small number), solve for the fundamental matrix using the function you wrote for part II, and then count the number of inliers. Inliers in this context will be point correspondences that agree with the estimated fundamental matrix. In order to count how many inliers a fundamental matrix has, youll need a distance metric based on the fundamental matrix. (Hint: For a point correspondence (x,x0) what properties does the fundamental matrix have?). Youll need to pick a threshold between inliers and outliers and your results are very sensitive to this threshold, so explore a range of values. You dont want to be too permissive about what you consider an inlier, nor do you want to be too conservative. Return the fundamental matrix with the most inliers.

Recall from lecture the expected number of iterations of RANSAC to find the right solution in the presence of outliers. For example, if half of your input correspondences are wrong, then you have a (0.5)8 = 0.39% chance to randomly pick 8 correspondences when estimating the fundamental matrix. Hopefully that correct fundamental matrix will have more inliers than one created from spurious matches, but to even find it you should probably do thousands of iterations of RANSAC.

For many real images, the fundamental matrix that is estimated will be wrong (as in it implies a relationship between the cameras that must be wrong, e.g., an epipole in the center of one image when the cameras actually have a large translation parallel to the image plane). The estimated fundamental matrix can be wrong because the points are co-planar or because the cameras are not actually pinhole cameras and have lens distortions. Still, these incorrect fundamental matrices tend to do a good job at removing incorrect SIFT matches (and, unfortunately, many correct ones).

For this part, you will implement the following methods in part3_ransac.py:

  • calculate_num_ransac_iterations(): Calculates the number of RANSAC iterations needed for a given guarantee of success.
  • ransac_fundamental_matrix(): Uses RANSAC to find the best fundamental matrix.

4 Part 4: Performance comparison

In this part, you will compare the performance of using the direct least squares method against RANSAC. You can use the code in the notebook for visualization of the fundamental matrix estimation. The first one uses a subset of the matches and the direct linear method (which corresponds to the estimate_fundamental_matrix () in part 2) to compute the fundamental matrix. The second method uses RANSAC, which corresponds to ransac_fundamental_matrix() in part 3. Based on your output visualizations, answer the reflection questions in the report.

5 Part 5: Visual odometry

Visual odometry (VO) is an important part of the simultaneous localization and mapping (SLAM) problem. In this part, you can observe the implementation of VO on a real-world example from Argoverse. VO will allow us to recreate most of the ego-motion of a camera mounted on a robot the relative translation (but only up to an unknown scale), and the relative rotation. See [2] for a more detailed understanding. Based on the output and your understanding of the process, answer the reflection questions in the report.

6 Writeup

For this project (and all other projects), you must do a project report using the template slides provided to you. Do not change the order of the slides or remove any slides, as this will affect the grading process on Gradescope and you will be deducted points. In the report you will describe your algorithm and any decisions you made to write your algorithm a particular way. Then you will show and discuss the results of your algorithm. The template slides provide guidance for what you should include in your report. A good writeup doesnt just show results it tries to draw some conclusions from the experiments. You must convert the slide deck into a PDF for your submission, and then assign each PDF page to the relevant question number on Gradescope.

If you choose to do anything extra, add slides after the slides given in the template deck to describe your implementation, results, and analysis. Adding slides in between the report template will cause issues with Gradescope, and you will be deducted points. You will not receive full credit for your extra credit implementations if they are not described adequately in your writeup.

Potentially useful NumPy (Python library) functions

  • linalg.svd() This function returns the singular value decomposition of a matrix. Useful for solving the linear systems of equations you build and reducing the rank of the fundamental matrix.
  • linalg.inv() This function returns the inverse of a matrix.
  • random.randint() Lets you pick integers from a range. Useful for RANSAC.

Forbidden functions

(You can use these for testing, but not in your final code). You may not use the SciPy constrained least squares function scipy.optimize.lsq_linear() or any similar function. You may also not use anyone elses code that estimates the fundamental matrix or performs RANSAC for you. If it feels like youre sidestepping the work, then its probably not allowed. Ask the TAs if you have any doubts.

Testing

We have provided a set of tests for you to evaluate your implementation. We have included tests inside proj3.ipynb so you can check your progress as you implement each section. When youre done with the entire project, you can call additional tests by running pytest proj3_unit_tests inside the root directory of the project, as well as checking against the tests on Gradescope. Your grade on the coding portion of the project will be further evaluated with a set of tests not provided to you.

Bells & whistles (extra points)

We dont have good suggestions for extra credit on this project. If you have ideas, come talk to us! If you choose to do extra credit, you should add slides at the end of your report further explaining your implementation, results, and analysis. You will not be awarded credit if this is missing from your submission.

Rubric

  • +20 pts: Implementation of projection matrix estimation in py
  • +25 pts: Implementation of fundamental matrix estimation in py
  • +25 pts: Implementation of RANSAC in py
  • +30 pts: Report
  • -5*n pts: Lose 5 points for every time you do not follow the instructions for the hand-in format

Submission format

This is very important as you will lose 5 points for every time you do not follow the instructions. You will submit two items to Gradescope:

  1. <your_gt_username>.zip containing:
    • proj3_code/ directory containing all your code for this assignment
    • additional_data/ (optional) if you use any data other than the images we provide, please include them here
  2. <your_gt_usernamme>_proj3.pdf your report

Do not install any additional packages inside the conda environment. The TAs will use the same environment as defined in the config files we provide you, so anything thats not in there by default will probably cause your code to break during grading. Do not use absolute paths in your code or your code will break. Use relative paths like the starter code already does. Failure to follow any of these instructions will lead to point deductions. Create the zip file using python zip_submission.py gt_username <your_gt_username> (it will zip up the appropriate directories/files for you!) and hand it in with your report PDF through Gradescope (please remember to mark which parts of your report correspond to each part of the rubric).

Credits

Assignment developed by James Hays, Cusuh Ham, Arvind Krishnakumar, Jing Wu, John Lambert, Samarth Brahmbhatt, Grady Williams, and Henry Hu, based on a similar project by Aaron Bobick.

References

  • Richard I Hartley. In defense of the eight-point algorithm. In: IEEE Transactions on pattern analysis and machine intelligence 6 (1997), pp. 580593.
  • Scaramuzza and F. Fraundorfer. Visual Odometry [Tutorial]. In: IEEE Robotics Automation Magazine 18.4 (2011), pp. 8092. doi: 10.1109/MRA.2011.943233.

Appendix A Fundamental matrix derivation

Recall that the definition of the fundamental matrix is:

= 0 (12)

Where does this equation come from? Szeliski shows that a 3D point p being viewed from two cameras (see Figure 3) can be modeled as:

d1x1 = p1 = 1R0p0 + 1t0 = 1R0(d0x0) + 1t0 (13)

where xj = Kj 1xj are the (local) ray direction vectors. Note that 1R0 and 1t0 define an SE(3) 1 T 0 object that transforms p0 from camera 0s frame to camera 1s frame. Well refer to these just as R and t for brevity in the following derivation.

We can eliminate the +t term by a cross-product. This can be achieved by multiplying with a skewsymmetric matrix as [t]t = 0. Then:

d1[t]x1 = d0[t]Rx0. (14)

Swapping sides and taking the dot product of both sides with x1 yields

, (15)

Since the cross product [t]x returns 0 when pre- and post-multiplied by the same vector, we arrive at the familiar epipolar constraint, where E = [t]R:

x = 0 (16)

The fundamental matrix is defined asEK0 1. Thus,

EK = 0 (17)

We can write this as:

= 0 (18)

Appendix B Unnormalizing normalized coordinates

The main idea of coordinate normalization is to replace coordinates ua in image a with ua = Taua, and coordinates ub in image b with ub = Tbub. If T is chosen to be invertible, then we can recover the original coordinates from the transformed ones, as

ua = Taua
Ta1ua = Ta1TauaTa1ua = ua (19)

Substituting in the equation u = 0, we derive the equation

(Tb1ub)TFTa1ua = 0 (20)

u

If we use the normalized points u when fitting the fundamental matrix, then we will end up estimating

. In other words, uTb Fua = uTb Fua. If we want to find out the original F that corresponded

to raw (unnormalized) point coordinates, than we need to transform backwards:

F = TbTFTa1 TbTF = TbTTbTFTa1

(21)

TbTFT a = FTa1Ta

Reviews

There are no reviews yet.

Only logged in customers who have purchased this product may leave a review.

Shopping Cart
[Solved] CS6476 Project3-Camera Calibration and Fundamental Matrix Estimation with RANSAC
$25