当前位置:网站首页>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、参考论文
略
边栏推荐
- XSS shooting range (3) prompt to win
- Minesweeper game (written in c language)
- 信息系统项目管理师核心考点(五十五)配置管理员(CMO)的工作
- 30 Years of Open Source Community | 2022 Open Atom Global Open Source Summit 30 Years of Open Source Community Special Event Held Successfully
- Unity shader forge和自带的shader graph,有哪些优缺点?
- DVWA shooting range environment construction
- Unity URP渲染管线摄像机核心机制剖析
- [Cloud Native] DevOps (5): Integrating Harbor
- MySQL optimization: from ten seconds to three hundred milliseconds
- MySQL database addition, deletion, modification and query (detailed explanation of basic operation commands)
猜你喜欢

A complete introduction to JSqlParse of Sql parsing and conversion

Minesweeper game - C language

MySQL优化:从十几秒优化到三百毫秒

ERROR 1819 (HY000) Your password does not satisfy the current policy requirements

ERROR 2003 (HY000) Can't connect to MySQL server on 'localhost3306' (10061)Solution

Mysql应用安装后找不到my.ini文件

The input input box displays the precision of two decimal places

From scratch, a mirror to the end, a pure system builds a grasscutter (Grasscutter)

Error EPERM operation not permitted, mkdir 'Dsoftwarenodejsnode_cache_cacach Two solutions

PWN ROP
随机推荐
SQL row-column conversion
HCIP第十天_BGP路由汇总实验
【debug锦集】Expected input batch_size (1) to match target batch_size (0)
DVWA shooting range environment construction
Lua,ILRuntime, HybridCLR(wolong)/huatuo热更新对比分析
论治理与创新 | 2022开放原子全球开源峰会OpenAnolis分论坛圆满召开
Sql解析转换之JSqlParse完整介绍
110 MySQL interview questions and answers (continuously updated)
MySQL优化之慢日志查询
DVWA安装教程(懂你的不懂·详细)
Simple read operation of EasyExcel
The Vue project connects to the MySQL database through node and implements addition, deletion, modification and query operations
Reference code series_1. Hello World in various languages
Visual studio shortcuts that improve efficiency, summary (updated from time to time)
PCL 计算点云坐标最值及其索引
Unity Tutorial: URP Rendering Pipeline Practical Tutorial Series [1]
STM32 - DMA
STM32HAL库修改Hal_Delay为us级延时
ERROR 2003 (HY000) Can't connect to MySQL server on 'localhost3306' (10061)
Mysql application cannot find my.ini file after installation