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

📄 colorgrow.h

📁 使用大恒采集卡的图像显示
💻 H
字号:
// ColorGrow.h: interface for the CColorGrow class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_COLORGROW_H__FECDD1AE_9E20_4678_A528_DFDFFCC82796__INCLUDED_)
#define AFX_COLORGROW_H__FECDD1AE_9E20_4678_A528_DFDFFCC82796__INCLUDED_

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

#include "ImagePointProcess.h"

class CColorGrow : public CImagePointProcess  
{
	DECLARE_DYNAMIC(CColorGrow)
public:
	void GetPoint(BYTE* pbyte,int w,int h, int imager0, int imageg0, int imageb0,DWORD width,DWORD index,int* x,int *y);
	void Grow3(int imageinr[][200],int imageing[][200],int imageinb[][200], int* x_x, int* y_y, int w, int h,int n,int* R, int* G, int* B);
	void Grow2(int imageinr[][200],int imageing[][200],int imageinb[][200], int* x_x, int* y_y, int w, int h,int* R, int* G, int* B);
	void Grow(int imageinr[200][200],int imageing[200][200],int imageinb[200][200], int* x_x, int* y_y,int w,int h,int* R, int* G, int* B);
	BOOL GetImage(LPBYTE lpbyBits32, int* xx, int* yy, int nWidth, int nHeight, int nScanWidth, int nScanHeight,int* R, int* G, int* B);
	CColorGrow();
	virtual ~CColorGrow();

private:

#ifdef _DEBUG
	virtual void Dump(CDumpContext& dc)const;
	virtual void AssertValid()const;
#endif
};

#endif // !defined(AFX_COLORGROW_H__FECDD1AE_9E20_4678_A528_DFDFFCC82796__INCLUDED_)

⌨️ 快捷键说明

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