资源简介
使用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
相关资源
- 基于OFDMA系统的多用户资源分配算法,
- EEMD的MATLAB程序
- MATLAB蒸气云爆炸模型VEC
- 提取图片纹理特征能量、熵、惯性矩
- 基于遗传算法的机器人路径规划matl
- BP神经网络实现手写数字识别matlab实现
- PCA人脸识别Eigenface特征脸Matlab
-
Matlab+Simuli
nk-cmi、miller、双相码 - 数字识别matlab源代码
- 基于lab空间的图像分割
-
MATLAB/simuli
nk短路电流仿真 - matlab2019运动目标检测--数字图像处理
- Allan方差分析MATLAB代码,含MPU6050八小
- 暗通道去雾MATLAB205097
- 自动寻峰谷算法matlab实现
- 基于MATLAB的车牌定位源程序
- 基于sift特征的人民币识别matlab版
- 《MATLAB仿真在现代通信中的应用》徐
- CARS-PLS 用于光谱数据或色谱数据变量
- matlab人脸皮肤分层、图像检测、检测
- CARS matlab 代码
- 基于MATLAB的OFDM系统仿真及性能分析
- AR模型算法的matlab实现和实验分析
- 基于自适应压扩法降低OFDM系统的峰均
- 自抗扰控制ADRC的MATLAB仿真+书籍资料
- matlab模式识别工具箱PRTOOLS及使用说明
- Dijkstra最短路径算法的Matlab实现
- matlab.m 获取wav文件基频 mel倒谱 ff
- Robust ICP (matlab)
- 均匀球体剖面重力异常正演模拟Matl
评论
共有 条评论