Ticket #34838: patch-contrib__rpl__rgrl__rgrl_est_proj_rad_func.txx-clang-compatibility.diff
File patch-contrib__rpl__rgrl__rgrl_est_proj_rad_func.txx-clang-compatibility.diff, 1.4 KB (added by neverpanic (Clemens Lang), 12 years ago) |
---|
-
contrib/rpl/rgrl/rgrl_est_proj_rad_func.txx
old new 139 139 140 140 // 1. get projection matrix jacobian 141 141 vnl_matrix_fixed<double, Tdim, (Tdim+1)*(Fdim+1)-1> dP_dp; 142 reduced_proj_jacobian( dP_dp, proj, from );142 this->reduced_proj_jacobian( dP_dp, proj, from ); 143 143 144 144 // 2. gradient w.r.t to mapped location 145 145 vnl_matrix_fixed<double, Tdim, Tdim > dD_dx; … … 220 220 221 221 // 1. get projection matrix jacobian 222 222 vnl_matrix_fixed<double, Tdim, (Tdim+1)*(Fdim+1)> dP_dp; 223 full_proj_jacobian( dP_dp, proj, from );223 this->full_proj_jacobian( dP_dp, proj, from ); 224 224 225 225 // 2. gradient w.r.t to mapped location 226 226 vnl_matrix_fixed<double, Tdim, Tdim > dD_dx; … … 358 358 359 359 // retrieve the projection matrix 360 360 vnl_matrix_fixed<double, Tdim+1, Fdim+1> proj; 361 restored_centered_proj( proj, x );361 this->restored_centered_proj( proj, x ); 362 362 363 363 // retrieve the radial distortion parameters 364 364 transfer_radial_params_into_temp_storage( x ); … … 407 407 408 408 // retrieve the projection matrix 409 409 vnl_matrix_fixed<double, Tdim+1, Fdim+1> proj; 410 restored_centered_proj( proj, x );410 this->restored_centered_proj( proj, x ); 411 411 412 412 // retrieve the radial distortion parameters 413 413 transfer_radial_params_into_temp_storage( x );