代码搜索:RADON
找到约 336 项符合「RADON」的源代码
代码结果 336
www.eeworm.com/read/278399/10537282
h radon.h
www.eeworm.com/read/310212/13655049
m radon.m
function [P,r] = radon(I,theta,n)
%RADON Compute Radon transform.
% The RADON function computes the Radon transform, which is the
% projection of the image intensity along a radial line
% or
www.eeworm.com/read/127815/14332286
bmp radon.bmp
www.eeworm.com/read/390693/8452207
m radon_t.m
clc;
clear all
tic
Im = imread('dt666.jpg');
I = rgb2gray(Im);
imshow(I)
theta = -20:1:20;
[R,Xp] = radon(I,theta);
% figure (1)
% plot(Xp,R(:,1),'-',Xp,R(:,2),'-.',Xp,R(:,3),'--'
www.eeworm.com/read/371706/9540922
m forward_radon.m
function [d]=forward_radon(m,dt,h,p,N,flow,fhigh);
%FOR_RADON: Forward linear and parabolic Radon transform.
% Given a Radon panel (tau-p), this function maps
% the tau-p gather into time-offset
www.eeworm.com/read/371706/9540924
m inverse_radon.m
function [m] = inverse_radon(d,dt,h,q,N,flow,fhigh,mu,ttype);
%INV_RADON: Inverse linear or parabolic Radon transform.
%
% [m] = inverse_radon(d,dt,h,q,N,flow,fhigh,mu)
%
% IN d: seismic tra
www.eeworm.com/read/371706/9540929
m example_radon.m
%
% example_radon.m
%
% Example that shows how to use the Radon transform
%
% Read 1 gather
[d,headers] = readsegy('gom_cdp_nmo.su');
% Get headers that are needed by Radon
h = [headers.offset
www.eeworm.com/read/278399/10538104
h new_radon.h
struct RadonResult
{
int centre_x;
int centre_y;
int theta;
int coordinatex;
int rect_length;
int avernum;
};
#define cornernum 180
BOOL newradon(int **pic,int *row,int *col,int *ou
www.eeworm.com/read/241517/13137862
mcd the radon transformation.mcd
www.eeworm.com/read/307769/13715386
m radon_wigner.m
%radon transform
clear all;
%
N=800;
n=1:N;
fs=200;
t=n/fs;
x1=exp(j*2*pi*(5*t+0.5*5*t.^2));
x2=exp(j*2*pi*(5*t+0.5*15*t.^2));
x=x1+x2;
%****************************************RWT
tf