代码搜索:Distortion
找到约 806 项符合「Distortion」的源代码
代码结果 806
www.eeworm.com/read/258442/11863087
h me_distortion.h
/*!
***************************************************************************
* \file
* me_distortion.h
*
* \author
* Alexis Michael Tourapis
*
www.eeworm.com/read/258442/11863220
c me_distortion.c
/*!
*************************************************************************************
* \file me_distortion.c
*
* \brief
* Motion estimation error calculation functions
*
* \author
*
www.eeworm.com/read/258442/11863313
c md_distortion.c
/*!
***************************************************************************
* \file md_distortion.c
*
* \brief
* Main macroblock mode decision functions and helpers
*
**********
www.eeworm.com/read/152439/12113720
m comp_distortion.m
function [x_comp] = comp_distortion(x_dist,k2);
% [x_comp] = comp_distortion(x_dist,k2);
%
% compensates the radial distortion of the camera
% on the image plane.
%
www.eeworm.com/read/152439/12113789
m apply_distortion.m
function [xd,dxddk] = apply_distortion(x,k)
[m,n] = size(x);
% Add distortion:
r2 = x(1,:).^2 + x(2,:).^2;
r4 = r2.^2;
r6 = r2.^3;
% Radial distortion:
cdist = 1 + k(1) * r2 +
www.eeworm.com/read/339620/12217000
m comp_distortion.m
function [x_comp] = comp_distortion(x_dist,k2);
% [x_comp] = comp_distortion(x_dist,k2);
%
% compensates the radial distortion of the camera
% on the image plane.
%
www.eeworm.com/read/339620/12217247
m apply_distortion.m
function [xd,dxddk] = apply_distortion(x,k)
% Complete the distortion vector if you are using the simple distortion model:
length_k = length(k);
if length_k
www.eeworm.com/read/226935/14446482
h me_distortion.h
/*!
***************************************************************************
* \file
* me_distortion.h
*
* \author
* Alexis Michael Tourapis
*
www.eeworm.com/read/226935/14446565
c me_distortion.c
/*!
*************************************************************************************
* \file me_distortion.c
*
* \brief
* Motion estimation error calculation functions
*
* \author
*
www.eeworm.com/read/225935/14510463
m comp_distortion.m
function [x_comp] = comp_distortion(x_dist,k2);
% [x_comp] = comp_distortion(x_dist,k2);
%
% compensates the radial distortion of the camera
% on the image plane.
%