|
表格线识别通用库文档
|
#include <cmath>#include <iostream>#include <opencv2/core.hpp>#include "common/enum.h"#include "common/macro.h"#include "common/type.h"

类 | |
| class | cm::Point< T > |
| 点类 更多... | |
命名空间 | |
| namespace | cm |
类型定义 | |
| typedef Point< int > | cm::Point2i |
| 整型坐标点类型 | |
| typedef Point< float > | cm::Point2f |
| 单精度浮点型坐标点类型 | |
| typedef Point< double > | cm::Point2d |
| 双精度浮点型坐标点类型 | |
函数 | |
| template<typename U > | |
| bool | cm::operator== (const Point< U > &pt1, const Point< U > &pt2) |
| 点类重载等于号 | |
| template<typename U > | |
| bool | cm::operator!= (const Point< U > &pt1, const Point< U > &pt2) |
| 点类重载不等于号 | |
| template<typename U > | |
| bool | cm::operator< (const Point< U > &pt1, const Point< U > &pt2) |
| 点类重载小于号 | |
| template<typename U > | |
| bool | cm::operator> (const Point< U > &pt1, const Point< U > &pt2) |
| 点类重载大于号 | |
| template<typename U > | |
| bool | cm::operator<= (const Point< U > &pt1, const Point< U > &pt2) |
| 点类重载小于等于号 | |
| template<typename U > | |
| bool | cm::operator>= (const Point< U > &pt1, const Point< U > &pt2) |
| 点类重载大于等于号 | |
| template<typename U > | |
| Point< U > | cm::operator- (const Point< U > &pt1, const Point< U > &pt2) |
| 点类重载减号运算符 | |
| template<typename U > | |
| std::ostream & | cm::operator<< (std::ostream &out, const Point< U > &pt) |
| 点类重载输出流运算符 | |