当前位置:网站首页>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、参考论文
略
边栏推荐
- Unity URP渲染管线摄像机核心机制剖析
- Mysql application cannot find my.ini file after installation
- Industry landing presents new progress | 2022 OpenAtom Global Open Source Summit OpenAtom OpenHarmony sub-forum was successfully held
- DVWA installation tutorial (understand what you don't understand · in detail)
- EasyExcel的简单读取操作
- Lua,ILRuntime, HybridCLR(wolong)/huatuo hot update comparative analysis
- 【R语言】【3】apply,tapply,lapply,sapply,mapply与par函数相关参数
- The monitoring of Doris study notes
- Create componentized development based on ILRuntime hot update
- 限流的原理
猜你喜欢

mysql存储过程

MySQL optimization: from ten seconds to three hundred milliseconds

View source and switch mirrors in two ways: npm and nrm
![[R language] [3] apply, tapply, lapply, sapply, mapply and par function related parameters](/img/98/282d8d192f701ad33de48aeeb038b4.png)
[R language] [3] apply, tapply, lapply, sapply, mapply and par function related parameters

PWN ROP

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

益智类游戏关卡设计:逆推法--巧解益智类游戏关卡设计

Puzzle Game Level Design: Reverse Method--Explaining Puzzle Game Level Design

110 MySQL interview questions and answers (continuously updated)

12 reasons for MySQL slow query
随机推荐
Unity URP渲染管线摄像机核心机制剖析
STM32 - DMA
MySQL window function
[debug highlights] Expected input batch_size (1) to match target batch_size (0)
MySQL database addition, deletion, modification and query (detailed explanation of basic operation commands)
Unity手机游戏性能优化系列:针对CPU端的性能调优
Unity资源管理系列:Unity 框架如何做好资源管理
ERP生产作业控制 金蝶
110 MySQL interview questions and answers (continuously updated)
城市内涝及桥洞隧道积水在线监测系统
MySQL事务(transaction) (有这篇就足够了..)
ERROR 1064 (42000) You have an error in your SQL syntax; check the manual that corresponds to your
Centos7 install mysql5.7 steps (graphical version)
MySQL database backup
prompt.ml/15中<svg>标签使用解释
Temporal客户端模型
DVWA installation tutorial (understand what you don't understand · in detail)
【debug锦集】Expected input batch_size (1) to match target batch_size (0)
STM32HAL库修改Hal_Delay为us级延时
参考代码系列_1.各种语言的Hello World