OpenCV for Unity 2.6.4
Enox Software / Please refer to OpenCV official document ( http://docs.opencv.org/4.10.0/index.html ) for the details of the argument of the method.
|
Class implementing TEBLID (Triplet-based Efficient Binary Local Image Descriptor), described in [Suarez2021TEBLID]. More...
Public Member Functions | |
override string | getDefaultName () |
Public Member Functions inherited from OpenCVForUnity.Features2dModule.Feature2D | |
void | compute (List< Mat > images, List< MatOfKeyPoint > keypoints, List< Mat > descriptors) |
void | compute (Mat image, MatOfKeyPoint keypoints, Mat descriptors) |
Computes the descriptors for a set of keypoints detected in an image (first variant) or image set (second variant). | |
int | defaultNorm () |
int | descriptorSize () |
int | descriptorType () |
void | detect (List< Mat > images, List< MatOfKeyPoint > keypoints) |
void | detect (List< Mat > images, List< MatOfKeyPoint > keypoints, List< Mat > masks) |
void | detect (Mat image, MatOfKeyPoint keypoints) |
Detects keypoints in an image (first variant) or image set (second variant). | |
void | detect (Mat image, MatOfKeyPoint keypoints, Mat mask) |
Detects keypoints in an image (first variant) or image set (second variant). | |
void | detectAndCompute (Mat image, Mat mask, MatOfKeyPoint keypoints, Mat descriptors) |
void | detectAndCompute (Mat image, Mat mask, MatOfKeyPoint keypoints, Mat descriptors, bool useProvidedKeypoints) |
override bool | empty () |
Returns true if the Algorithm is empty (e.g. in the very beginning or after unsuccessful read. | |
void | read (string fileName) |
void | write (string fileName) |
Public Member Functions inherited from OpenCVForUnity.CoreModule.Algorithm | |
virtual void | clear () |
Clears the algorithm state. | |
IntPtr | getNativeObjAddr () |
void | save (string filename) |
Public Member Functions inherited from OpenCVForUnity.DisposableObject | |
void | Dispose () |
void | ThrowIfDisposed () |
Static Public Member Functions | |
static new TEBLID | __fromPtr__ (IntPtr addr) |
static TEBLID | create (float scale_factor) |
Creates the TEBLID descriptor. | |
static TEBLID | create (float scale_factor, int n_bits) |
Creates the TEBLID descriptor. | |
Static Public Member Functions inherited from OpenCVForUnity.Features2dModule.Feature2D | |
static new Feature2D | __fromPtr__ (IntPtr addr) |
Static Public Member Functions inherited from OpenCVForUnity.CoreModule.Algorithm | |
static Algorithm | __fromPtr__ (IntPtr addr) |
Static Public Member Functions inherited from OpenCVForUnity.DisposableObject | |
static IntPtr | ThrowIfNullIntPtr (IntPtr ptr) |
Static Public Attributes | |
const int | SIZE_256_BITS = 102 |
const int | SIZE_512_BITS = 103 |
Protected Member Functions | |
override void | Dispose (bool disposing) |
Protected Member Functions inherited from OpenCVForUnity.Features2dModule.Feature2D | |
Protected Member Functions inherited from OpenCVForUnity.CoreModule.Algorithm | |
Protected Member Functions inherited from OpenCVForUnity.DisposableOpenCVObject | |
DisposableOpenCVObject () | |
DisposableOpenCVObject (bool isEnabledDispose) | |
DisposableOpenCVObject (IntPtr ptr) | |
DisposableOpenCVObject (IntPtr ptr, bool isEnabledDispose) | |
Protected Member Functions inherited from OpenCVForUnity.DisposableObject | |
DisposableObject () | |
DisposableObject (bool isEnabledDispose) | |
Additional Inherited Members | |
Package Functions inherited from OpenCVForUnity.Features2dModule.Feature2D | |
Package Functions inherited from OpenCVForUnity.CoreModule.Algorithm | |
Package Attributes inherited from OpenCVForUnity.DisposableOpenCVObject | |
Properties inherited from OpenCVForUnity.DisposableObject | |
bool | IsDisposed [get, protected set] |
bool | IsEnabledDispose [get, set] |
Class implementing TEBLID (Triplet-based Efficient Binary Local Image Descriptor), described in [Suarez2021TEBLID].
TEBLID stands for Triplet-based Efficient Binary Local Image Descriptor, although originally it was called BAD [Suarez2021TEBLID]. It is an improvement over BEBLID [Suarez2020BEBLID], that uses triplet loss, hard negative mining, and anchor swap to improve the image matching results. It is able to describe keypoints from any detector just by changing the scale_factor parameter. TEBLID is as efficient as ORB, BEBLID or BRISK, but the triplet-based training objective selected more discriminative features that explain the accuracy gain. It is also more compact than BEBLID, when running the AKAZE example with 10000 keypoints detected by ORB, BEBLID obtains 561 inliers (75%) with 512 bits, whereas TEBLID obtains 621 (75.2%) with 256 bits. ORB obtains only 493 inliers (63%).
If you find this code useful, please add a reference to the following paper: <BLOCKQUOTE> Iago Suárez, José M. Buenaposada, and Luis Baumela. Revisiting Binary Local Image Description for Resource Limited Devices. IEEE Robotics and Automation Letters, vol. 6, no. 4, pp. 8317-8324, Oct. 2021. </BLOCKQUOTE>
The descriptor was trained in Liberty split of the UBC datasets [winder2007learning] .
|
static |
|
static |
Creates the TEBLID descriptor.
scale_factor | Adjust the sampling window around detected keypoints:
|
n_bits | Determine the number of bits in the descriptor. Should be either TEBLID.SIZE_256_BITS or TEBLID.SIZE_512_BITS. |
|
static |
Creates the TEBLID descriptor.
scale_factor | Adjust the sampling window around detected keypoints:
|
n_bits | Determine the number of bits in the descriptor. Should be either TEBLID.SIZE_256_BITS or TEBLID.SIZE_512_BITS. |
|
protectedvirtual |
Reimplemented from OpenCVForUnity.Features2dModule.Feature2D.
|
virtual |
Returns the algorithm string identifier. This string is used as top level xml/yml node tag when the object is saved to a file or string.
Reimplemented from OpenCVForUnity.Features2dModule.Feature2D.
|
static |
|
static |