资源简介
使用matlab将图像归一化的代码,包含实例图片绝对可用

代码片段和文件信息
function invnormim = iminvnorm(normim height width normtform udata vdata)
%
% Perform inverse normalization on a normalized image
%
% Input:
% normim: normalized grayscale image
% height width: size of the original (unnormalized) image
% normtform: tform of normalization
% udata vdata: coordinates of the normalized image
%
% Output:
% invnormim: inversely normalized version of the normalized image
%
% Copyright (c) Yuan-Liang Tang
% Associate Professor
% Department of Information Management
% Chaoyang University of Technology
% Taichung Taiwan
% Email: yltang@cyut.edu.tw
% http://www.cyut.edu.tw/~yltang
%
% Permission is hereby granted free of charge to any person obtaining
% a copy of this software without restriction subject to the following
% conditions:
% The above copyright notice and this permission notice should be included
% in all copies or substantial portions of the Software.
%
% The Software is provided “as is“ without warranty of any kind.
%
% Created: Mar. 3 2008
% Last updated: Jul. 30 2009
%
if ~isa(normim ‘double‘)
normim = double(normim);
end
% Inverse normalization
[invnormim xdata ydata] = imtransform(normim fliptform(normtform) ...
‘UData‘ udata ‘VData‘ vdata ‘XData‘ [1 width] ‘YData‘ [1 height] ...
‘XYScale‘ 1);
figure(‘Name‘ ‘Inversely normalized‘) imshow(invnormim[]) impixelinfo;
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 58 2008-04-09 17:12 Archive created by free jZip.url
文件 1415 2009-07-30 12:56 iminvnorm.m
文件 4556 2009-07-30 12:56 imnorm.m
文件 76664 2009-03-24 20:15 lena.tif
文件 1336 2009-07-30 01:01 license.txt
文件 929 2009-07-30 12:57 test.m
相关资源
- matlab_OFDM调制解调(来自剑桥大学)
- Matlab路面裂缝识别69319
- 高灵敏度GPS接收机MATLAB仿真,附捕获
- 基于MATLAB的质点弹道计算与外弹道优
- 阵列天线的matlab仿真
- MATLAB 经典程序源代码大全
- MATLAB小波软阈值去噪代码33473
- 天线阵的波束形成在MATLAB仿真程序及
- 非线性SVM算法-matlab实现
- 《MATLAB 智能算法超级学习手册》-程序
- 组合导航matlab程序
- 读取txt文件内容matlab代码实现
- Matlab实现基于相关的模板匹配程序
- matlab优化工具箱讲解
- 基于MATLAB的快速傅里叶变换
- 光纤传输中的分布傅立叶算法matlab实
- 基于matlab的图像处理源程序
- matlab 椭圆拟合程序
- 算术编码解码matlab源代码
- optical_flow 光流法 matlab 实现程序
- 引导图像滤波器 Matlab实现
- 分形几何中一些经典图形的Matlab画法
- OFDM系统MATLAB仿真代码
- SVM工具箱(matlab中运行)
- 图像小波变换MatLab源代码
- LU分解的MATLAB实现
- 冈萨雷斯数字图像处理matlab版(第三
- 替代数据法的matlab程序
- 用matlab实现的多站定位系统性能仿真
- 通过不同方法进行粗糙集属性约简m
评论
共有 条评论