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

📄 segment.h

📁 the code write C++. it is in image processing field. this code Read TIFF Image then it segment image
💻 H
字号:
// Segment.h: interface for the Segment class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_SEGMENT_H__234B7A78_5E51_449F_9C01_65A5B4637B65__INCLUDED_)
#define AFX_SEGMENT_H__234B7A78_5E51_449F_9C01_65A5B4637B65__INCLUDED_

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

class Segment  
{
public:
	Segment();
	virtual ~Segment();


	int H[256];
	void LTransformation(float *OutputImage, int NBL, int NBC);
	void Histogram(float *InputImage, int NBL, int NBC);
	void SegmentWithM(float *InputImage, float *OutputImage, int NBL, int NBC);
	void OtsuThreshold(float *InputImage, float *OutputImage, int NBL, int NBC);




};

#endif // !defined(AFX_SEGMENT_H__234B7A78_5E51_449F_9C01_65A5B4637B65__INCLUDED_)

⌨️ 快捷键说明

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