|
| String | getDefaultName () const CV_OVERRIDE |
| |
| virtual float | getScaleFactor () const =0 |
| |
| virtual void | setScaleFactor (float scale_factor)=0 |
| |
| virtual | ~Feature2D () |
| |
| virtual void | compute (InputArray image, std::vector< KeyPoint > &keypoints, OutputArray descriptors) |
| | 画像(1番目のバリアント)または画像集合(2番目のバリアント)で検出されたキーポイントの集合について記述子を計算する。
|
| |
| virtual void | compute (InputArrayOfArrays images, std::vector< std::vector< KeyPoint > > &keypoints, OutputArrayOfArrays descriptors) |
| |
| virtual int | defaultNorm () const |
| |
| virtual int | descriptorSize () const |
| |
| virtual int | descriptorType () const |
| |
| virtual void | detect (InputArray image, std::vector< KeyPoint > &keypoints, InputArray mask=noArray()) |
| | 画像(1番目のバリアント)または画像集合(2番目のバリアント)からキーポイントを検出する。
|
| |
| virtual void | detect (InputArrayOfArrays images, std::vector< std::vector< KeyPoint > > &keypoints, InputArrayOfArrays masks=noArray()) |
| |
| virtual void | detectAndCompute (InputArray image, InputArray mask, std::vector< KeyPoint > &keypoints, OutputArray descriptors, bool useProvidedKeypoints=false) |
| |
| virtual bool | empty () const CV_OVERRIDE |
| | 検出器オブジェクトが空の場合に true を返す。
|
| |
| virtual void | read (const FileNode &) CV_OVERRIDE |
| | ファイルストレージからアルゴリズムの引数を読み込む。
|
| |
| void | read (const String &fileName) |
| |
| void | write (const Ptr< FileStorage > &fs, const String &name) const |
| |
| void | write (const String &fileName) const |
| |
| virtual void | write (FileStorage &) const CV_OVERRIDE |
| | アルゴリズムの引数をファイルストレージに保存する。
|
| |
| void | write (FileStorage &fs, const String &name) const |
| |
| | Algorithm () |
| |
| virtual | ~Algorithm () |
| |
| virtual void | clear () |
| | アルゴリズムの状態をクリアする。
|
| |
| virtual void | save (const String &filename) const |
| |
| void | write (const Ptr< FileStorage > &fs, const String &name=String()) const |
| |
| void | write (FileStorage &fs, const String &name) const |
| |
BEBLID(Boosted Efficient Binary Local Image Descriptor)を実装するクラス。[262]で記述されている。
BEBLID [262]は、ブースティングによって学習された効率的なバイナリ記述子である。scale_factorパラメータを変更するだけで、任意の検出器から得られるキーポイントを記述できる。いくつかのベンチマークにおいて、ORBやBRISKといった他のバイナリ記述子を、同等の効率を保ちながら大幅に上回る性能を示すことが実証されている。BEBLIDはKeyPoint周辺の画像のさまざまな領域における平均グレー値の差を用いて記述を行い、本記述子は画像マッチングおよびパッチ検索のために特化して最適化されており、これらの問題が持つ非対称性に対処している。
本コードが有用であると感じた場合は、以下の論文への参照を追加していただきたい:
Iago Suárez, Ghesn Sfeir, José M. Buenaposada, and Luis Baumela. BEBLID: Boosted efficient binary local image descriptor. Pattern Recognition Letters, 133:366–372, 2020.
この記述子は、論文[262]で記述されているように、UBCデータセット[303]のLibertyスプリットからランダムにサンプリングした100万組のパッチペア(陽性20%、陰性80%)を用いて学習された。BEBLIDがどれほどうまく機能するかはAKAZEの例で確認できる。ORBで10000個のキーポイントを検出しBEBLIDで記述すると561個のインライア(75%)が得られるのに対し、ORBで記述すると493個のインライア(63%)しか得られない。