OpenCV 4.5.3(日本語機械翻訳)
|
This class represents high-level API for classification models. [詳解]
#include <dnn.hpp>
cv::dnn::Modelを継承しています。
公開メンバ関数 |
|
CV_WRAP | ClassificationModel (const String &model, const String &config="") |
サポートされているフォーマットの一つで表現されたネットワークから分類モデルを作成する。引数の順番は関係ありません。model およびconfig 引数の順番は関係ありません。[【詳解】(英語]
|
|
CV_WRAP | ClassificationModel (const Net &network) |
深層学習ネットワークからモデルを作成します。[【詳解】(英語]
|
|
std::pair< int, float > | classify (InputArray frame) |
blobが与えられるとinput フレームを使用して、入力blobを作成し、ネットを実行してトップ1予測を返します。[【詳解】(英語]
|
|
CV_WRAP void | classify (InputArray frame, CV_OUT int &classId, CV_OUT float &conf) |
![]() |
|
Model (const Model &)=default | |
Model (Model &&)=default | |
Model & | operator= (const Model &)=default |
Model & | operator= (Model &&)=default |
CV_WRAP | Model (const String &model, const String &config="") |
サポートされている形式のいずれかで表現された深層学習ネットワークからモデルを作成します。の順になります。model およびconfig 引数の順番は関係ありません。[【詳解】(英語]
|
|
CV_WRAP | Model (const Net &network) |
深層学習ネットワークからモデルを作成します。[【詳解】(英語]
|
|
CV_WRAP Model & | setInputSize (const Size &size) |
フレームの入力サイズを設定します。[【詳解】(英語]
|
|
CV_WRAP Model & | setInputSize (int width, int height) |
CV_WRAP Model & | setInputMean (const Scalar &mean) |
フレームの平均値を設定[【詳解】(英語]
|
|
CV_WRAP Model & | setInputScale (double scale) |
フレームのスケールファクタ値の設定[【詳解】(英語]
|
|
CV_WRAP Model & | setInputCrop (bool crop) |
フレームにflag cropを設定する。[【詳解】(英語]
|
|
CV_WRAP Model & | setInputSwapRB (bool swapRB) |
フレームのためのフラグ swapRB を設定する。[【詳解】(英語]
|
|
CV_WRAP void | setInputParams (double scale=1.0, const Size &size=Size(), const Scalar &mean=Scalar(), bool swapRB=false, bool crop=false) |
フレームの前処理パラメータの設定[【詳解】(英語]
|
|
CV_WRAP void | predict (InputArray frame, OutputArrayOfArrays outs) const |
blobが与えられるとinput フレームを作成し、入力blobを作成し、ネットを実行し、出力を返す。blobs .[【詳解】(英語]
|
|
CV_WRAP Model & | setPreferableBackend (dnn::Backend backendId) |
CV_WRAP Model & | setPreferableTarget (dnn::Target targetId) |
CV_DEPRECATED_EXTERNAL | operator Net & () const |
Net & | getNetwork_ () const |
Net & | getNetwork_ () |
Impl * | getImpl () const |
Impl & | getImplRef () const |
その他の継承メンバ |
|
![]() |
|
Ptr< Impl > | impl |
このクラスは、分類モデルの高レベルAPIを表します。
ClassificationModel入力画像を前処理するためのパラメータを設定できます。ClassificationModelファイルから学習済みの重みと設定でネットを作成し、前処理の入力を設定し、フォワードパスを実行してトップ1予測を返します。
CV_WRAP cv::dnn::ClassificationModel::ClassificationModel | ( | const String & | model, |
const String & |
config
=
"" |
||
) |
サポートされているフォーマットの一つで表現されたネットワークから分類モデルを作成する。引数の順番は関係ありません。model
およびconfig
引数の順番は関係ありません。
[in]. | model | 学習した重みを格納したバイナリファイル |
[in]. | config | テキストファイルにはネットワークの設定が格納されています。 |
CV_WRAP cv::dnn::ClassificationModel::ClassificationModel | ( | const Net & | network | ) |
深層学習ネットワークからモデルを作成します。
[in]. | network | Netオブジェクトを作成します。 |
std::pair< int, float > cv::dnn::ClassificationModel::classify | ( | InputArray | frame | ) |
blobが与えられるとinput
フレームを使用して、入力blobを作成し、ネットを実行してトップ1予測を返します。
[in]. | frame | 入力画像です。 |
CV_WRAP void cv::dnn::ClassificationModel::classify | ( | InputArray | frame, |
CV_OUT int & | classId, | ||
CV_OUT float & | conf | ||
) |
これはオーバーロードされたメンバ関数です。利便性のために用意されています。元の関数との違いは引き数のみです。