当前位置:网站首页>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、参考论文
略
边栏推荐
- PWN ROP
- 论治理与创新 | 2022开放原子全球开源峰会OpenAnolis分论坛圆满召开
- 【debug锦集】Expected input batch_size (1) to match target batch_size (0)
- MySQL transaction isolation level, rounding
- MySQL optimization slow log query
- SQL injection of DVWA
- 重磅 | 开放原子校源行活动正式启动
- CentOS7 —— yum安装mysql
- ERROR 2003 (HY000) Can't connect to MySQL server on 'localhost3306' (10061)
- ERROR 1819 (HY000) Your password does not satisfy the current policy requirements
猜你喜欢

PWN ROP

12 reasons for MySQL slow query

Unity框架设计系列:Unity 如何设计网络框架

ENSP, VLAN division, static routing, comprehensive configuration of Layer 3 switches

1. 获取数据-requests.get()

MySQL database must add, delete, search and modify operations (CRUD)

npm、nrm两种方式查看源和切换镜像

WPF WPF 】 【 the depth resolution of the template

sql语句-如何以一个表中的数据为条件据查询另一个表中的数据

On-line monitoring system for urban waterlogging and water accumulation in bridges and tunnels
随机推荐
Doris学习笔记之监控
MySQL事务隔离级别详解
Go语学习笔记 - 处理超时问题 - Context使用 | 从零开始Go语言
Multiple table query of sql statement
Unity resources management series: Unity framework how to resource management
MySQL database backup
ES 源码 API调用链路源码分析
sql语句-如何以一个表中的数据为条件据查询另一个表中的数据
MySQL optimization: from ten seconds to three hundred milliseconds
MySQL常见面试题汇总(建议收藏!!!)
Puzzle Game Level Design: Reverse Method--Explaining Puzzle Game Level Design
From scratch, a mirror to the end, a pure system builds a grasscutter (Grasscutter)
On Governance and Innovation | 2022 OpenAtom Global Open Source Summit OpenAnolis sub-forum was successfully held
sql语句之多表查询
npm、nrm两种方式查看源和切换镜像
Centos7 install mysql5.7 steps (graphical version)
The monitoring of Doris study notes
MySQL transaction isolation level, rounding
.NET-9.乱七八糟的理论笔记(概念,思想)
SQL injection of DVWA