matlab abel变换图片处理

1、内容简介


462-可以交流、咨询、答疑

2、内容说明

3、仿真分析


clear
test = 1; % 1 for gaussian wave object, 2 for solid cylinder object

Nz = 100;
Ny = 100;
z = linspace(-1, 1, Nz);
y = linspace(0, 1, Ny);
[Z,Y] = meshgrid(z,y);

if (test == 1)
    F = exp(-Y.*Y/2/0.2^2);
elseif (test == 2)
    F = 2 * real(sqrt(0.3^2 - Y.*Y));
end

tic;
[zeta, r, f] = mod_abel_inversion_3_pts(z, y, F);
toc;

subplot(2,3,1:2);
imagesc(z, y, F);
title('Original image');

subplot(2,3,4:5);
imagesc(zeta, r, f);
title('Abel inverted image');

subplot(2,3,3);
plot(y, F(:,1), 'LineWidth', 2);
title('Lineout of the original image');

subplot(2,3,6);
plot(r, f(:,1), 'LineWidth', 2);
title('Lineout of the result');

 

clear
clc
close all
importfile('sum100.tif')
z = 1:length(sum100);
y = z;
aa = double(sum100);
tic;
[zeta, r, f] = mod_abel_inversion_3_pts(z, y, aa);
toc;

subplot(2,3,1:2);
imagesc(z, y, aa);
title('Original image');

subplot(2,3,4:5);
imagesc(zeta, r, f);
title('Abel inverted image');

subplot(2,3,3);
plot(y, aa(:,1), 'LineWidth', 2);
title('Lineout of the original image');

subplot(2,3,6);
plot(r, f(:,1), 'LineWidth', 2);
title('Lineout of the result');

4、参考论文


 

  • 2
    点赞
  • 4
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值