OpenCV 4.10.0
开源计算机视觉库
加载中...
搜索中...
无匹配项
公共类型 | 公共成员函数 | 公共属性 | 所有成员列表
cv::Rect_< _Tp > 类模板参考

二维矩形的模板类。 更多...

#include <opencv2/core/types.hpp>

cv::Rect_< _Tp > 的协作图

公共类型

typedef _Tp value_type
 

公共成员函数

 Rect_ ()
 默认构造函数
 
 Rect_ (_Tp _x, _Tp _y, _Tp _width, _Tp _height)
 
 Rect_ (const Point_< _Tp > &org, const Size_< _Tp > &sz)
 
 Rect_ (const Point_< _Tp > &pt1, const Point_< _Tp > &pt2)
 
 Rect_ (const Rect_ &r)=default
 
 Rect_ (Rect_ &&r) CV_NOEXCEPT=default
 
_Tp area () const
 矩形的面积 (width*height)
 
Point_< _Tpbr () const
 右下角
 
bool contains (const Point_< _Tp > &pt) const
 检查矩形是否包含点
 
bool empty () const
 如果为空则为 true
 
template<typename _Tp2 >
 operator Rect_< _Tp2 > () const
 转换为其他数据类型
 
Rect_operator= (const Rect_ &r)=default
 
Rect_operator= (Rect_ &&r) CV_NOEXCEPT=default
 
Size_< _Tpsize () const
 矩形的尺寸 (width, height)
 
Point_< _Tptl () const
 左上角
 

公共属性

_Tp height
 矩形的高度
 
_Tp width
 矩形的宽度
 
_Tp x
 左上角的 x 坐标
 
_Tp y
 左上角的 y 坐标
 

详细描述

template<typename _Tp>
class cv::Rect_< _Tp >

二维矩形的模板类。

由以下参数描述

OpenCV 通常假设矩形的顶部和左侧边界是包含的,而右侧和底部边界不是。 例如,方法 Rect_::contains 如果以下情况返回 true

\[x \leq pt.x < x+width, y \leq pt.y < y+height\]

实际上,在 OpenCV 中,几乎每个遍历图像 ROI 的循环(其中 ROI 由 Rect_<int> 指定)都被实现为

for(int y = roi.y; y < roi.y + roi.height; y++)
for(int x = roi.x; x < roi.x + roi.width; x++)
{
// ...
}
_Tp x
左上角的 x 坐标
定义 types.hpp:480
_Tp y
左上角的 y 坐标
定义 types.hpp:481

除了类成员之外,还实现了以下对矩形的操作

以下是如何建立矩形上的偏序关系的一个示例 (rect1 \(\subseteq\) rect2)

template<typename _Tp> inline bool
operator <= (const Rect_<_Tp>& r1, const Rect_<_Tp>& r2)
{
return (r1 & r2) == r1;
}
二维矩形的模板类。
定义 types.hpp:444
v_reg< _Tp, n > operator<=(const v_reg< _Tp, n > &a, const v_reg< _Tp, n > &b)
小于或等于比较。
定义 intrin_cpp.hpp:876

为了方便起见,可以使用 Rect_<> 别名: cv::Rect

示例
samples/cpp/camshiftdemo.cpp, samples/cpp/facedetect.cpp, samples/cpp/falsecolor.cpp, samples/cpp/ffilldemo.cpp, samples/cpp/grabcut.cpp, samples/cpp/peopledetect.cpp, samples/cpp/stitching.cpp, samples/cpp/stitching_detailed.cpp, samples/cpp/train_HOG.cpp, 和 samples/dnn/object_detection.cpp.

成员类型定义文档

◆ value_type

template<typename _Tp >
typedef _Tp cv::Rect_< _Tp >::value_type

构造函数和析构函数文档

◆ Rect_() [1/6]

template<typename _Tp >
cv::Rect_< _Tp >::Rect_ ( )

默认构造函数

◆ Rect_() [2/6]

template<typename _Tp >
cv::Rect_< _Tp >::Rect_ ( _Tp  _x,
_Tp  _y,
_Tp  _width,
_Tp  _height 
)

◆ Rect_() [3/6]

template<typename _Tp >
cv::Rect_< _Tp >::Rect_ ( const Rect_< _Tp > &  r)
默认

◆ Rect_() [4/6]

template<typename _Tp >
cv::Rect_< _Tp >::Rect_ ( Rect_< _Tp > &&  r)
默认

◆ Rect_() [5/6]

template<typename _Tp >
cv::Rect_< _Tp >::Rect_ ( const Point_< _Tp > &  org,
const Size_< _Tp > &  sz 
)

◆ Rect_() [6/6]

template<typename _Tp >
cv::Rect_< _Tp >::Rect_ ( const Point_< _Tp > &  pt1,
const Point_< _Tp > &  pt2 
)

成员函数文档

◆ area()

template<typename _Tp >
_Tp cv::Rect_< _Tp >::area ( ) const

矩形的面积 (width*height)

示例
samples/cpp/camshiftdemo.cpp.

◆ br()

template<typename _Tp >
Point_< _Tp > cv::Rect_< _Tp >::br ( ) const

右下角

示例
samples/cpp/peopledetect.cpp.

◆ contains()

template<typename _Tp >
bool cv::Rect_< _Tp >::contains ( const Point_< _Tp > &  pt) const

检查矩形是否包含点

◆ empty()

template<typename _Tp >
bool cv::Rect_< _Tp >::empty ( ) const

如果为空则为 true

◆ operator Rect_< _Tp2 >()

template<typename _Tp >
template<typename _Tp2 >
cv::Rect_< _Tp >::operator Rect_< _Tp2 > ( ) const

转换为其他数据类型

◆ operator=() [1/2]

template<typename _Tp >
Rect_ & cv::Rect_< _Tp >::operator= ( const Rect_< _Tp > &  r)
默认

◆ operator=() [2/2]

template<typename _Tp >
Rect_ & cv::Rect_< _Tp >::operator= ( Rect_< _Tp > &&  r)
默认

◆ size()

template<typename _Tp >
Size_< _Tp > cv::Rect_< _Tp >::size ( ) const

矩形的尺寸 (width, height)

示例
samples/cpp/stitching_detailed.cpp.

◆ tl()

template<typename _Tp >
Point_< _Tp > cv::Rect_< _Tp >::tl ( ) const

成员数据文档

◆ height

template<typename _Tp >
_Tp cv::Rect_< _Tp >::height

◆ width

template<typename _Tp >
_Tp cv::Rect_< _Tp >::width

◆ x

template<typename _Tp >
_Tp cv::Rect_< _Tp >::x

◆ y

template<typename _Tp >
_Tp cv::Rect_< _Tp >::y

该类的文档是从以下文件生成的