当前位置:网站首页>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、参考论文
略
边栏推荐
- DVWA之SQL注入
- mysql使用on duplicate key update批量更新数据
- 城市内涝及桥洞隧道积水在线监测系统
- XSS shooting range (3) prompt to win
- Error EPERM operation not permitted, mkdir 'Dsoftwarenodejsnode_cache_cacach Two solutions
- 信息系统项目管理师核心考点(五十五)配置管理员(CMO)的工作
- centos7安装mysql5.7
- MySQL database must add, delete, search and modify operations (CRUD)
- The Vue project connects to the MySQL database through node and implements addition, deletion, modification and query operations
- Duplicate entry 'XXX' for key 'XXX.PRIMARY' solution.
猜你喜欢
XSS靶场(三)prompt to win
12个MySQL慢查询的原因分析
MySQL事务(transaction) (有这篇就足够了..)
Unity resources management series: Unity framework how to resource management
数字经济时代的开源数据库创新 | 2022开放原子全球开源峰会数据库分论坛圆满召开
STM32HAL库修改Hal_Delay为us级延时
The input input box displays the precision of two decimal places
1. 获取数据-requests.get()
【线性神经网络】softmax回归
Numpy中np.meshgrid的简单用法示例
随机推荐
.NET-6.WinForm2.NanUI学习和总结
PCL 计算点云坐标最值及其索引
CentOS7 install MySQL graphic detailed tutorial
Duplicate entry 'XXX' for key 'XXX.PRIMARY' solution.
The MySQL database installed configuration nanny level tutorial for 8.0.29 (for example) have hands
WPF WPF 】 【 the depth resolution of the template
Duplicate entry ‘XXX‘ for key ‘XXX.PRIMARY‘解决方案。
Go语学习笔记 - 处理超时问题 - Context使用 | 从零开始Go语言
MySQL database backup
高斯分布及其极大似然估计
MySQL优化:从十几秒优化到三百毫秒
ES 源码 API调用链路源码分析
CentOS7 - yum install mysql
ERP生产作业控制 金蝶
Understanding of the presence of a large number of close_wait states
What are the advantages and disadvantages of Unity shader forge and the built-in shader graph?
npm、nrm两种方式查看源和切换镜像
MySQL optimization: from ten seconds to three hundred milliseconds
HCIP Day 10_BGP Route Summary Experiment
开源汇智创未来 | 2022开放原子全球开源峰会OpenAtom openEuler分论坛圆满召开