资源简介
计算两幅单波段影像之间的偏差指数,可用于影像融合质量评价
代码片段和文件信息
#include
#include
#include
#define WIDTHBYTES(i) (((i) + 31) / 32 * 4)
//(nImageWidth*nBitCount+31)/32*4 i = nImageWidth*nBitCount
//读取2副真彩色位图,分别求3个波段对应的偏差指数
void main(int char ** char **)
{
FILE* pFile = fopen(“D:\\desktop\\融合数据\\TEST.bmp“ “rb“); //here is the fusion image
if (!pFile)
{
printf(“Oh\n“);
return;
}
fseek(pFile 14 SEEK_SET);
BITMAPINFOHEADER bmih;
fread(&bmih sizeof(bmih) 1 pFile);
if (bmih.biBitCount != 24)
{
printf(“I can‘t accept you for you are not my taste\n“);
return;
}
int m_width = bmih.biWidth;
int m_height = bmih.biHeight;
int width = WIDTHBYTES(m_width*24);
fseek(pFile 1024 SEEK_CUR);
LPBYTE pBits1 = new BYTE[width*m_height];
fread(pBits1 width*m_height 1 pFile);
fclose(pFile);
pFile = fopen(“D:\\desktop\\融合数据\\color-berkeley.bmp“ “rb“);
if (!pFile)
{
printf(“Oh again\n“);
return;
}
fseek(pFile 14 SEEK_SET);
fread(&bmih sizeof(bmih) 1 pFile);
if (bmih.biBitCount != 24)
{
printf(“I can‘t accept you for you are not my taste BABY\n“);
return;
}
if (bmih.biWidth != m_width || bmih.biHeight != m_height)
{
printf(“You are not the one he is waiting for\n“);
return;
}
fseek(pFile 1024 SEEK_CUR);
LPBYTE pBits2 = new BYTE[width*m_height];
fread(pBits2 width*m_height 1 pFile);
fclose(pFile);
//read data done
double DI[3] = {0};
int i(0) j(0);
LPBYTE p1 = pBits1;
LPBYTE p2 = pBits2; //copy of origin pointer
for (; i < m_height; ++i)
{
p1 = pBits1 + i*width;
p2 = pBits2 + i*width;
for (j = 0; j < m_width; ++j)
{
if (*(p1+3*j+0) != 0)
DI[0] += fabs( ( *(p1+3*j+0) - *(p2+3*j+0) ) / (*(p1+3*j+0)) ); //分母为融合影像
if (*(p1+3*j+1) != 0)
DI[1] += fabs( ( *(p1+3*j+1) - *(p2+3*j+1) ) / (*(p1+3*j+1)) ); //分母为融合影像
if (*(p1+3*j+2) != 0)
DI[2] += fabs( ( *(p1+3*j+2) - *(p2+3*j+2) ) / (*(p1+3*j+2)) ); //分母为融合影像
}
}
delete[] pBits1;
pBits1 = NULL;
delete[] pBits2;
pBits2 = NULL;
DI[0] /= (m_width*m_height);
DI[1] /= (m_width*m_height);
DI[2] /= (m_width*m_height);
printf(“%f\n%f\n%f\n“ DI[0] DI[1] DI[2]);
return;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 2285 2011-03-21 13:32 DeviationIndex.cpp
文件 4380 2011-03-20 21:55 DeviationIndex.dsp
文件 553 2011-03-20 21:52 DeviationIndex.dsw
文件 0 2012-02-17 15:42 求取2幅影像指定波段之间偏差系数.txt
----------- --------- ---------- ----- ----
7218 4
- 上一篇:根据卫星星历结算GPS卫星位置
- 下一篇:KL变换主分量变换处理位图格式的影像
相关资源
- KL变换主分量变换处理位图格式的影像
- 6s.exe 大气 纠正 软件
- 批量单波段组合IDL程序
- 改进YOLO_V3遥感图像飞机识别应用_郑志
- IDL计算影像信息熵程序
- 遥感影像几何校正程序
- 《遥感导论》期末复习材料
- 遥感影像几何校正重采样
- flash as3.0制作遥感画板源文件
- 两幅影像的变化检测找出不同时期,
- HDF Exploer
- Landsat-TM影像数据免费方法
- ENVI_IDL.zip
- 光谱响应函数
- IDL语言基础及程序设计
- IDL批量裁剪影像
- CAD中按TFW坐标信息加载TIFF影像
- 卫星数据查询网站
- 影像导入cad
- 遥感图像处理的步骤
- 最新envi5.5版本 IDL8.7 处理最新哨兵3号
- 遥感影像监督分类与非监督分类及相
- 基于最大似然法的遥感图像分类技术
- 遥感手册Remote sensing handbook权威高清无
- idl批量解压原始影像压缩包
- 遥感反演海洋温度反演
- envi插件modis_conversion_toolkit
- sift、surf、sift+ransac方法影像匹配代码
- 基于mean shift的医学影像分割
- 遥感图像NDVI植被指数源码vc
评论
共有 条评论