代码搜索:Distortion
找到约 806 项符合「Distortion」的源代码
代码结果 806
www.eeworm.com/read/367875/9724893
m som_distortion3.m
function [Err,sPropTotal,sPropMunits,sPropComps] = som_distortion3(sM,D,rad)
%SOM_DISTORTION3 Map distortion measures.
%
% [sE,Err] = som_distortion3(sM,[D],[rad]);
%
% sE = som_distortion3(sM);
www.eeworm.com/read/235928/14041471
m som_distortion3.m
function [Err,sPropTotal,sPropMunits,sPropComps] = som_distortion3(sM,D,rad)
%SOM_DISTORTION3 Map distortion measures.
%
% [sE,Err] = som_distortion3(sM,[D],[rad]);
%
% sE = som_distortion3(sM);
www.eeworm.com/read/202876/15370647
m script_fit_distortion.m
satis_distort = 0;
disp(['Estimated focal: ' num2str(f_g) ' pixels']);
while ~satis_distort,
k_g = input('Guess for distortion factor kc ([]=0): ');
i
www.eeworm.com/read/202876/15370704
m comp_distortion2.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/202876/15370714
m apply_distortion2.m
function [xd,dxddk,dxddx] = apply_distortion2(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)
www.eeworm.com/read/202876/15370720
m extract_distortion_data.m
%%% Small script file that etst
%load Calib_Results;
% Collect all the points distorted (xd) and undistorted (xn) from the
% images:
xn = [];
xd = [];
for kk = ind_active,
eval(['x_k
www.eeworm.com/read/202876/15370736
m comp_distortion_oulu.m
function [x] = comp_distortion_oulu(xd,k);
%comp_distortion_oulu.m
%
%[x] = comp_distortion_oulu(xd,k)
%
%Compensates for radial and tangential distortion. Model From Oulu university.
%For mor
www.eeworm.com/read/358669/10182307
m script_fit_distortion_fisheye.m
satis_distort = 0;
while ~satis_distort,
k_g_save = k_g;
k_g = input(['Guess for distortion factor kc ([]=' num2str(k_g_save) '): ']);
if isem
www.eeworm.com/read/487897/6501715
h v3d_distortion.h
// -*- C++ -*-
/*
Copyright (c) 2008 University of North Carolina at Chapel Hill
This file is part of SSBA (Simple Sparse Bundle Adjustment).
SSBA is free software: you can redistribute it and/or mo
www.eeworm.com/read/14291/326822