OpenCV 4.5.3(日本語機械翻訳)
公開型 | 公開メンバ関数 | 公開変数類 | 全メンバ一覧
cv::Point_< _Tp > クラステンプレート

Template class for 2D points specified by its coordinates x and y. [詳解]

#include <types.hpp>

公開型

typedef _Tp value_type

公開メンバ関数

Point_ ()
デフォルトコンストラクタ
Point_ (_Tp _x, _Tp _y)
Point_ (const Point_ &pt)
Point_ (Point_ &&pt) CV_NOEXCEPT
Point_ (const Size_< _Tp > &sz)
Point_ (const Vec< _Tp, 2 > &v)
Point_ & operator= (const Point_ &pt)
Point_ & operator= (Point_ &&pt) CV_NOEXCEPT
template<typename _Tp2 >
operator Point_< _Tp2 > () const
他のデータ型への変換
operator Vec< _Tp, 2 > () const
古いスタイルのCの構造体への変換
_Tp dot (const Point_ &pt) const
ドット積
double ddot (const Point_ &pt) const
倍精度で計算された内積
double cross (const Point_ &pt) const
クロスプロダクト
bool inside (const Rect_< _Tp > &r) const
点が指定された矩形の内側にあるかどうかを調べる

公開変数類

_Tp x
点のx座標
_Tp y
点の y 座標

詳解

template<typename _Tp>
クラス cv::Point_< _Tp > 。

座標で指定される2次元点のテンプレートクラス.xおよびy.

このクラスのインスタンスは,C言語の構造体と入れ替え可能です.CvPointおよびCvPoint2D32f. また,点座標を指定された型に変換するためのキャスト演算子もあります.浮動小数点座標から整数座標への変換は,丸めによって行われます.一般的に,変換では座標ごとにこの演算を使用します。上記の宣言に記載されているクラス・メンバの他に、以下のような点に関する操作が実装されています。

pt1 = pt2 + pt3;
pt1 = pt2 - pt3;
pt1 = pt2 * a;
pt1 = a * pt2;
pt1 = pt2 / a;
pt1 += pt2;
pt1 -= pt2;
pt1 *= a;
pt1 /= a;
double value = norm(pt); // L2 norm
pt1 == pt2;
pt1 != pt2;
CV_EXPORTS_W double norm(InputArray src1, int normType=NORM_L2, InputArray mask=noArray())
Calculates the absolute norm of an array.

便宜上,以下の型の別名が定義されています。

typedef Point_<int> Point2i;
typedef Point2i Point;
typedef Point_<float> Point2f;
typedef Point_<double> Point2d;

Point2f a(0.3f, 0.f), b(0.f, 0.4f);
Point pt = (a + b)*10.f;
cout << pt.x << ", " << pt.y << endl;

このクラス詳解は次のファイルから抽出されました: