rsimagebin.h

来自「c语言实现的遥感图像处理的一些基本操作」· C头文件 代码 · 共 33 行

H
33
字号
// RSImageBIN.h: interface for the CRSImageBIN class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_RSIMAGEBIN_H__6BB4B332_E24B_4A4B_BDB7_042AFBB07E39__INCLUDED_)
#define AFX_RSIMAGEBIN_H__6BB4B332_E24B_4A4B_BDB7_042AFBB07E39__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

#include "RSImage.h"

class AFX_CLASS_EXPORT CRSImageBIN : public CRSImage  
{
public:
	CRSImageBIN();
	virtual ~CRSImageBIN();
public:
	int width,height;
	int RedChannel, GreenChannel, BlueChannel;
	int nCount;       //记录波段总数
    char strTempFile[80];
	BYTE nByte;
	long m_nheadsize;
    BOOL IsNormal;
public:
	virtual int Read(const char * filename);
	virtual int Write(const char * filename);
};

#endif // !defined(AFX_RSIMAGEBIN_H__6BB4B332_E24B_4A4B_BDB7_042AFBB07E39__INCLUDED_)

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?