OpenCV 4.5.3(日本語機械翻訳)
公開メンバ関数 | 公開変数類 | 全メンバ一覧
cv::SparseMatConstIterator クラス

Read-Only Sparse Matrix Iterator. [詳解]

#include <mat.hpp>

cv::SparseMatConstIterator_< _Tp >, cv::SparseMatIteratorに継承されています。

公開メンバ関数

SparseMatConstIterator ()
デフォルトコンストラクタ
SparseMatConstIterator (const SparseMat *_m)
疎な行列の最初の要素にイテレータを設定するフルコンストラクタ。
SparseMatConstIterator (const SparseMatConstIterator &it)
コピーコンストラクタ
SparseMatConstIterator & operator= (const SparseMatConstIterator &it)
代入演算子
template<typename _Tp >
const _Tp & value () const
現在の行列要素を返すテンプレートメソッド
const SparseMat::Node * node () const
疎行列の現在のノードを返します. it.node->idx は現在の要素のインデックスです.
SparseMatConstIterator & operator-- ()
イテレータを前の要素に移動させます.
SparseMatConstIterator operator-- (int)
イテレータを前の要素に移動させます.
SparseMatConstIterator & operator++ ()
イテレータを次の要素に移動させます.
SparseMatConstIterator operator++ (int)
イテレータを次の要素に移動させます.
void seekEnd ()
最後の要素の後の要素にイテレータを移動させます.

公開変数類

const SparseMat * m
size_t hashidx
uchar * ptr

詳解

読み取り専用の疎行列イテレータ。

ここでは、イテレータを使用して浮動小数点型疎行列の要素の合計を計算する方法を説明します。

SparseMatConstIterator it = m.begin(), it_end = m.end();
double s = 0;
CV_Assert( m.type() == CV_32F );
for( ; it != it_end; ++it )
s += it.value<float>();
SparseMatConstIterator()
the default constructor
int type() const
returns type of sparse matrix elements
SparseMatIterator end()
returns the sparse matrix iterator at the matrix end
SparseMatIterator begin()
returns the sparse matrix iterator at the matrix beginning
#define CV_Assert(expr)
Checks a condition at runtime and throws exception if it fails
Definition: base.hpp:342

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