![]() |
OpenCV 4.13.0
Open Source Computer Vision
|
畳み込み(または相互相関)演算子の基底クラス。: 続きを読む...
#include <opencv2/cudaarithm.hpp>
公開メンバ関数 | |
| virtual void | convolve (InputArray image, InputArray templ, OutputArray result, bool ccorr=false, Stream &stream=Stream::Null())=0 |
| 2つの画像の畳み込み(または相互相関)を計算する。 | |
Public Member Functions inherited from cv::Algorithm | |
| Algorithm () | |
| virtual | ~Algorithm () |
| virtual void | clear () |
| アルゴリズムの状態をクリアする。 | |
| virtual bool | empty () const |
| Algorithm が空の場合(たとえば開始直後や読み込みに失敗した後)に true を返す。 | |
| virtual String | getDefaultName () const |
| virtual void | read (const FileNode &fn) |
| ファイルストレージからアルゴリズムの引数を読み込む。 | |
| virtual void | save (const String &filename) const |
| void | write (const Ptr< FileStorage > &fs, const String &name=String()) const |
| virtual void | write (FileStorage &fs) const |
| アルゴリズムの引数をファイルストレージに保存する。 | |
| void | write (FileStorage &fs, const String &name) const |
Additional Inherited Members | |
Static Public Member Functions inherited from cv::Algorithm | |
| template<typename _Tp > | |
| static Ptr< _Tp > | load (const String &filename, const String &objname=String()) |
| ファイルからアルゴリズムを読み込む。 | |
| template<typename _Tp > | |
| static Ptr< _Tp > | loadFromString (const String &strModel, const String &objname=String()) |
| 文字列からアルゴリズムを読み込む。 | |
| template<typename _Tp > | |
| static Ptr< _Tp > | read (const FileNode &fn) |
| ファイルノードからアルゴリズムを読み込む。 | |
Protected Member Functions inherited from cv::Algorithm | |
| void | writeFormat (FileStorage &fs) const |
畳み込み(または相互相関)演算子の基底クラス。:
|
pure virtual |
2つの画像の畳み込み(または相互相関)を計算する。
| image | ソース画像。現時点では CV_32FC1 画像のみがサポートされている。 |
| templ | テンプレート画像。サイズは画像のサイズ以下であること。型は画像と同じ。 |
| result | 結果画像。画像が W x H で templ が w x h の場合、結果は W-w+1 x H-h+1 でなければならない。 |
| ccorr | 畳み込みではなく相互相関を評価するためのフラグ。 |
| stream | 非同期版のための Stream。 |