Skip to content

Commit

Permalink
Fixed more quintic camera jacobian bugs.
Browse files Browse the repository at this point in the history
  • Loading branch information
edrosten committed Nov 24, 2005
1 parent 7b9fb3c commit 4e72851
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cvd/camera.h
Original file line number Diff line number Diff line change
Expand Up @@ -407,15 +407,15 @@ TooN::Matrix<Camera::Quintic::num_parameters,2> Camera::Quintic::get_parameter_d
double fu = my_camera_parameters[0];
double fv = my_camera_parameters[1];

result(0,0) = mod_camframe[0] * fu;
result(0,0) = mod_camframe[0];
result(1,0) = 0;
result(2,0) = 1;
result(3,0) = 0;
result(4,0) = my_camera_parameters[0]*my_last_camframe[0]*r2;
result(5,0) = my_camera_parameters[0]*my_last_camframe[0]*r4;

result(0,1) = 0;
result(1,1) = mod_camframe[1]*fv;
result(1,1) = mod_camframe[1];
result(2,1) = 0;
result(3,1) = 1;
result(4,1) = my_camera_parameters[1]*my_last_camframe[1]*r2;
Expand Down

0 comments on commit 4e72851

Please sign in to comment.