VC视频对象的跟踪提取原代码(vc视频监控源码)

源代码在线查看: greymap.h

软件大小: 425 K
上传用户: liyuanhang
关键词: 视频 对象 代码 源码
下载地址: 免注册下载 普通下载 VIP

相关代码

				/***************************************************************				 * C - C++ Header				 *				 * File : 	GreyMap.h				 *				 * Module :	GreyMap				 *				 * Author : 	A M Baumberg (CoMIR)				 *				 * Creation Date : Mon Jun 17 10:45:07 1996 				 *				 * Comments : 	an intensity correction map				 *				 ***************************************************************/								#ifndef __GREY_MAP_H__				#define __GREY_MAP_H__								#include "realno.h"								namespace ReadingPeopleTracker				{								typedef unsigned char BaseGreyMap[256];				typedef unsigned char *PntGreyMap;								// gamma correction 				// Result  = 255 * [(Intensity / 255)^(1.0 / gamma)]								class GammaCorrectMap 				{				protected:				    				    BaseGreyMap data;				    				public:				    				    GammaCorrectMap(realno gamma_val);				    				    operator PntGreyMap()					{					    return &data[0];					}				};								} // namespace ReadingPeopleTracker								#endif							

相关资源