当前位置:网站首页>matlab abel变换图片处理
matlab abel变换图片处理
2022-07-31 04:58:00 【studyer_domi】
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、参考论文
略
边栏推荐
- Go语学习笔记 - 处理超时问题 - Context使用 | 从零开始Go语言
- Unity resources management series: Unity framework how to resource management
- SQL statement to range query time field
- ERROR 2003 (HY000) Can't connect to MySQL server on 'localhost3306' (10061)
- Unity资源管理系列:Unity 框架如何做好资源管理
- Simple read operation of EasyExcel
- 限流的原理
- Unity教程:URP渲染管线实战教程系列【1】
- Sun Wenlong, Secretary General of the Open Atom Open Source Foundation |
- Go language study notes - dealing with timeout problems - Context usage | Go language from scratch
猜你喜欢
Two address pools r2 are responsible for managing the address pool r1 is responsible for managing dhcp relays
【线性神经网络】softmax回归
sql语句-如何以一个表中的数据为条件据查询另一个表中的数据
EasyExcel的简单读取操作
WPF WPF 】 【 the depth resolution of the template
PWN ROP
Unity URP渲染管线摄像机核心机制剖析
Unity手机游戏性能优化系列:针对CPU端的性能调优
MySQL事务(transaction) (有这篇就足够了..)
HCIP第十天_BGP路由汇总实验
随机推荐
Unity shader forge和自带的shader graph,有哪些优缺点?
XSS靶场(三)prompt to win
参考代码系列_1.各种语言的Hello World
mysql uses on duplicate key update to update data in batches
Minesweeper game - C language
ERROR 1064 (42000) You have an error in your SQL syntax; check the manual that corresponds to your
CentOS7 - yum install mysql
ENSP, VLAN division, static routing, comprehensive configuration of Layer 3 switches
XSS shooting range (3) prompt to win
Summary of MySQL common interview questions (recommended collection!!!)
.NET-9.乱七八糟的理论笔记(概念,思想)
Unity resources management series: Unity framework how to resource management
限流的原理
Visual studio shortcuts that improve efficiency, summary (updated from time to time)
聚变云原生,赋能新里程 | 2022开放原子全球开源峰会云原生分论坛圆满召开
MySQL忘记密码怎么办
MySQL optimization slow log query
简易网络文件拷贝的C实现
Open Source Database Innovation in the Digital Economy Era | 2022 Open Atom Global Open Source Summit Database Sub-Forum Successfully Held
Create componentized development based on ILRuntime hot update