资源简介
matlab to envi 把影像写成envi标准的格式,希望对研究遥感影像处理方法的有用
代码片段和文件信息
function i=enviwrite(imagefname);
% enviwrite - write ENVI image from MATLAB array (V. Guissard Apr 29 2004)
%
% Write a MATLAB array to a file in ENVI standard format
% from a [col x line x band] array
%
% SYNTAX
%
% image=freadenvi(fname)
% [imagep]=freadenvi(fname)
% [imagept]=freadenvi(fname)
%
% INPUT :
%
%
% image c by l by b name of the MATLAB variable containing the array to export
% to an ENVI image with c = cols l the lines and b the bands
% fname string full pathname of the ENVI image to write.
%
% OUTPUT :
%
% i integer i = -1 if process fail
%
% NOTE :
%
%%%%%%%%%%%%%
% Parameters initialization
im_size=size(image);
im_size(3)=size(image3);
elements={‘samples =‘ ‘lines =‘ ‘bands =‘ ‘data type =‘};
d=[4 1 2 3 12 13];
% Check user input
if ~ischar(fname)
error(‘fname should be a char string‘);
end
cl1=class(image);
if cl1 == ‘double‘
img=si
- 上一篇:基本粒子群算法的ieee30节点无功优化
- 下一篇:OFDM信道估计源代码
相关资源
- OFDM信道估计源代码
- matlab 经纬度 东北天 直角坐标系转换
- 无迹粒子滤波的matlab实现
- MINLP问题TOMLAB教程
- MATLAB实现形态学滤波
-
基于Matlab_Simuli
nk的开关磁阻电动机 - LDPC编码的matlab实现
- 在matlab 中配置VLfeat库成功调用
- 用MATLAB画贝塞尔曲线和B样条曲线
- Matlab三次均匀B样条曲线插值函数
- MATLAB dcm图像转raw图像代码
- camshift运动目标跟踪(matlab)
- matlab中求解线性方程组的源代码
- 稀疏贝叶斯matlab程序
- 洛伦兹系统matlab程序
- 用MATLAB计算allan方差并拟合
-
Simuli
nk_BP神经网络PID控制 -
逆变器-变换器PQ控制simuli
nk资源 - 用matlab绘制史密期圆图,有源码,有
- matlab型数据集heart_scale
- matlab和c程序混编提示找不到mex.h
- kalman滤波、平滑和预测 MATLAB程序
- SVPWM matlab
- 《射频电路设计:理论与应用》第2版
- EKF_matlab
- 图像处理中经典细化算法集合matlab
- 绘制在不同温度下光伏电池的输出特
- TDOA算法matlab仿真代码.rar
- 入侵杂草算法matlab源代码
- 生成格雷码图案matlab程序
评论
共有 条评论