OpenCV 4.11.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
 右下角
 
template<typename _Tp2 >
bool contains (const Point_< _Tp2 > &pt) const
 检查矩形是否包含该点
 
bool empty () const
 如果为空则为真
 
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_::xRect_::y的默认解释。但是,在你的算法中,你可能从左下角计算 x 和 y。
  • 矩形的宽度和高度。

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:487
_Tp y
左上角的 y 坐标
定义 types.hpp:488

除了类成员外,还实现了以下矩形运算:

  • \(\texttt{rect} = \texttt{rect} \pm \texttt{point}\)(将矩形移动一定的偏移量)
  • \(\texttt{rect} = \texttt{rect} \pm \texttt{size}\)(将矩形扩大或缩小一定的量)
  • rect += point, rect -= point, rect += size, rect -= size(增量运算)
  • rect = rect1 & rect2(矩形相交)
  • rect = rect1 | rect2(包含 rect1 和 rect2 的最小面积矩形)
  • rect &= rect1, rect |= rect1(以及相应的增量运算)
  • rect == rect1, rect != rect1(矩形比较)

这是一个关于如何建立矩形的部分排序的例子 (rect1 \(\subseteq\) rect2)

template<typename _Tp> inline bool
operator <= (const Rect_<_Tp>& r1, const Rect_<_Tp>& r2)
{
return (r1 & r2) == r1;
}
二维矩形的模板类。
定义 types.hpp:444
cv::GMat operator<=(const cv::GMat &lhs, const cv::GMat &rhs)

为方便起见,提供了 Rect_<> 别名: cv::Rect

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

成员类型定义文档

◆ value_type

template<typename _Tp >
_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 >
template<typename _Tp2 >
bool cv::Rect_< _Tp >::contains ( const Point_< _Tp2 > & pt) const
内联

检查矩形是否包含该点

警告
OpenCV 4.11.0 及以后版本,当使用 cv::Point2f / cv::Point2d 点调用 Rect.contains() 时,不应该将点转换为/舍入为整数。
Rect_<int> r(0,0,500,500); Point_<float> pt(250.0f, 499.9f);
r.contains(pt) 返回 false。(OpenCV 4.10.0 或更早版本)
r.contains(pt) 返回 true。(OpenCV 4.11.0 或更高版本)
用于指定其坐标 x 和 y 的二维点的模板类。
定义 types.hpp:163

◆ empty()

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

如果为空则为真

◆ 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

◆ width

◆ x

◆ y


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