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

📄 disparitymap.h

📁 本程序是计算机视觉稠密匹配的程序
💻 H
字号:
/*
 *
 *  All Contents Copyright 2000 by Jared Samet. All Rights Reserved.
 *
 */

// DisparityMap.h: interface for the CDisparityMap class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_DISPARITYMAP_H__5B621711_0286_11D4_8E6C_0080ADB4F3A9__INCLUDED_)
#define AFX_DISPARITYMAP_H__5B621711_0286_11D4_8E6C_0080ADB4F3A9__INCLUDED_

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

class CDisparityMap  
{
public:
	int m_iMinDisp;
	int m_iMaxDisp;
	CDisparityMap(unsigned int cRows, unsigned int cCols);
    int& DisparityAt(unsigned int iRow, unsigned int iCol);
	virtual ~CDisparityMap();
    unsigned int m_cRows;
    unsigned int m_cCols;

protected:
    int *m_piDisparities;
};

#endif // !defined(AFX_DISPARITYMAP_H__5B621711_0286_11D4_8E6C_0080ADB4F3A9__INCLUDED_)

⌨️ 快捷键说明

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