disparitymap.h
来自「本程序是计算机视觉稠密匹配的程序」· C头文件 代码 · 共 34 行
H
34 行
/*
*
* 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 + =
减小字号Ctrl + -
显示快捷键?