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

Template class specifying a continuous subsequence (slice) of a sequence. [詳解]

#include <types.hpp>

cv::dnn::_Rangeに継承されています。

公開メンバ関数

Range (int _start, int _end)
int size () const
bool empty () const

静的公開メンバ関数

static Range all ()

公開変数類

int start
int end

詳解

配列の連続した部分配列(スライス)を指定するテンプレートクラス。

このクラスは、行列の行または列のスパンを指定するために使用されます(Mat)の行や列のスパンを指定したり、その他多くの目的で使用されます。Range(a,b) は,基本的に Matlab の a:b や Python の a..b と同じです.Python の場合と同様に,start は範囲の左端を含む境界,end は範囲の右端を含む境界です.このような半開きの区間は,通常,次のように表されます$[start,end)$.

The static method Range::all() returns a special variable that means "the whole sequence" or "the whole range", just like " : " in Matlab or " ... " in Python. All the methods and functions in OpenCV that take Rangeを取るOpenCVのすべてのメソッドや関数は,この特別なRange::all()値をサポートします.しかし,もちろん,あなた自身のカスタム処理の場合は,おそらく明示的にチェックして処理する必要があるでしょう.

void my_function(..., const Range& r, ....)
{
if(r == Range::all()) {
// process all the data
}
else {
// process [r.start, r.end)
}
}

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