⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 filter.h

📁 the code environment s C++. it is in image processing field. this code Read TIFF Image then it excut
💻 H
字号:
// Filter.h: interface for the CFilter class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_FILTER_H__BDBB477B_3602_4814_AB91_49E43C153D55__INCLUDED_)
#define AFX_FILTER_H__BDBB477B_3602_4814_AB91_49E43C153D55__INCLUDED_

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

class CFilter  
{
public:
	CFilter();
	virtual ~CFilter();
	void MedianFilterClassical(float *InputImage, float *OutputImage, int NBL, int NBC);
	void Sorting1Darray(float vec[], int n);
};




#endif // !defined(AFX_FILTER_H__BDBB477B_3602_4814_AB91_49E43C153D55__INCLUDED_)

⌨️ 快捷键说明

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