OpenCV 4.5.3(日本語機械翻訳)
公開メンバ関数 | 全メンバ一覧
cv::v_reg< _Tp, n > 構造体テンプレート

公開メンバ関数

v_reg (const _Tp *ptr)
コンストラクタ[【詳解】(英語]
v_reg (_Tp s0, _Tp s1)
コンストラクタ[【詳解】(英語]
v_reg (_Tp s0, _Tp s1, _Tp s2, _Tp s3)
コンストラクタ[【詳解】(英語]
v_reg (_Tp s0, _Tp s1, _Tp s2, _Tp s3, _Tp s4, _Tp s5, _Tp s6, _Tp s7)
コンストラクタ[【詳解】(英語]
v_reg (_Tp s0, _Tp s1, _Tp s2, _Tp s3, _Tp s4, _Tp s5, _Tp s6, _Tp s7, _Tp s8, _Tp s9, _Tp s10, _Tp s11, _Tp s12, _Tp s13, _Tp s14, _Tp s15)
コンストラクタ[【詳解】(英語]
v_reg ()
デフォルトコンストラクタ[【詳解】(英語]
v_reg (const v_reg< _Tp, n > &r)
コピーコンストラクタ
_Tp get0 () const
最初の値へのアクセス[【詳解】(英語]

構築子と解体子

v_reg() [1/6]

template<typename _Tp , int n>
cv::v_reg< _Tp, n >::v_reg ( const _Tp * ptr )
inline explicit

コンストラクタ

メモリからのデータでレジスタを初期化

引数
ptr レジスタのデータを持つメモリブロックへのポインタ

v_reg() [2/6]

template<typename _Tp , int n>
cv::v_reg< _Tp, n >::v_reg ( _Tp s0,
_Tp s1
)
inline

コンストラクタ

2つの64ビット値でレジスタを初期化

v_reg() [3/6]

template<typename _Tp , int n>
cv::v_reg< _Tp, n >::v_reg ( _Tp s0,
_Tp s1,
_Tp s2,
_Tp s3
)
inline

コンストラクタ

4つの32ビット値でのレジスタの初期化

v_reg() [4/6]

template<typename _Tp , int n>
cv::v_reg< _Tp, n >::v_reg ( _Tp s0,
_Tp s1,
_Tp s2,
_Tp s3,
_Tp s4,
_Tp s5,
_Tp s6,
_Tp s7
)
inline

コンストラクタ

8個の16ビット値を持つレジスタの初期化

v_reg() [5/6]

template<typename _Tp , int n>
cv::v_reg< _Tp, n >::v_reg ( _Tp s0,
_Tp s1,
_Tp s2,
_Tp s3,
_Tp s4,
_Tp s5,
_Tp s6,
_Tp s7,
_Tp s8,
_Tp s9,
_Tp s10,
_Tp s11,
_Tp s12,
_Tp s13,
_Tp s14,
_Tp s15
)
inline

コンストラクタ

16個の8ビット値を持つレジスタの初期化

v_reg() [6/6]

template<typename _Tp , int n>
cv::v_reg< _Tp, n >::v_reg ( )
inline

デフォルトコンストラクタ

何も初期化しません

関数詳解

get0()

template<typename _Tp , int n>
_Tp cv::v_reg< _Tp, n >::get0 ( ) const
inline

最初の値へのアクセス

レジスタの種類に応じて、最初のレーンの値を返します。

v_int32x4 r(1, 2, 3, 4);
int v = r.get0(); // returns 1
v_uint64x2 r(1, 2);
uint64_t v = r.get0(); // returns 1
v_reg< int, 4 > v_int32x4
Four 32-bit signed integer values
Definition: intrin_cpp.hpp:498
v_reg< uint64, 2 > v_uint64x2
Two 64-bit unsigned integer values
Definition: intrin_cpp.hpp:504

この構造体詳解は次のファイルから抽出されました: