pub struct TEBLID { /* private fields */ }
Expand description
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 \cite Suarez2021TEBLID. It is an improvement over BEBLID \cite 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:
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.
The descriptor was trained in Liberty split of the UBC datasets \cite winder2007learning .
Implementations§
Source§impl TEBLID
impl TEBLID
Sourcepub fn create(scale_factor: f32, n_bits: i32) -> Result<Ptr<TEBLID>>
pub fn create(scale_factor: f32, n_bits: i32) -> Result<Ptr<TEBLID>>
Creates the TEBLID descriptor.
§Parameters
- scale_factor: Adjust the sampling window around detected keypoints:
- 1.00f should be the scale for ORB keypoints
- 6.75f should be the scale for SIFT detected keypoints
- 6.25f is default and fits for KAZE, SURF detected keypoints
- 5.00f should be the scale for AKAZE, MSD, AGAST, FAST, BRISK keypoints
- n_bits: Determine the number of bits in the descriptor. Should be either TEBLID::SIZE_256_BITS or TEBLID::SIZE_512_BITS.
§C++ default parameters
- n_bits: TEBLID::SIZE_256_BITS
Sourcepub fn create_def(scale_factor: f32) -> Result<Ptr<TEBLID>>
pub fn create_def(scale_factor: f32) -> Result<Ptr<TEBLID>>
Creates the TEBLID descriptor.
§Parameters
- scale_factor: Adjust the sampling window around detected keypoints:
- 1.00f should be the scale for ORB keypoints
- 6.75f should be the scale for SIFT detected keypoints
- 6.25f is default and fits for KAZE, SURF detected keypoints
- 5.00f should be the scale for AKAZE, MSD, AGAST, FAST, BRISK keypoints
- n_bits: Determine the number of bits in the descriptor. Should be either TEBLID::SIZE_256_BITS or TEBLID::SIZE_512_BITS.
§Note
This alternative version of TEBLID::create function uses the following default values for its arguments:
- n_bits: TEBLID::SIZE_256_BITS
Trait Implementations§
Source§impl AlgorithmTrait for TEBLID
impl AlgorithmTrait for TEBLID
Source§impl AlgorithmTraitConst for TEBLID
impl AlgorithmTraitConst for TEBLID
fn as_raw_Algorithm(&self) -> *const c_void
Source§fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>
fn write(&self, fs: &mut impl FileStorageTrait) -> Result<()>
Source§fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>
fn write_1(&self, fs: &mut impl FileStorageTrait, name: &str) -> Result<()>
Source§fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>
fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>
Source§fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>
fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>
§Note
Source§fn empty(&self) -> Result<bool>
fn empty(&self) -> Result<bool>
Source§fn save(&self, filename: &str) -> Result<()>
fn save(&self, filename: &str) -> Result<()>
Source§fn get_default_name(&self) -> Result<String>
fn get_default_name(&self) -> Result<String>
Source§impl Boxed for TEBLID
impl Boxed for TEBLID
Source§unsafe fn from_raw(ptr: <TEBLID as OpenCVFromExtern>::ExternReceive) -> Self
unsafe fn from_raw(ptr: <TEBLID as OpenCVFromExtern>::ExternReceive) -> Self
Source§fn into_raw(self) -> <TEBLID as OpenCVTypeExternContainer>::ExternSendMut
fn into_raw(self) -> <TEBLID as OpenCVTypeExternContainer>::ExternSendMut
Source§fn as_raw(&self) -> <TEBLID as OpenCVTypeExternContainer>::ExternSend
fn as_raw(&self) -> <TEBLID as OpenCVTypeExternContainer>::ExternSend
Source§fn as_raw_mut(&mut self) -> <TEBLID as OpenCVTypeExternContainer>::ExternSendMut
fn as_raw_mut(&mut self) -> <TEBLID as OpenCVTypeExternContainer>::ExternSendMut
Source§impl Feature2DTrait for TEBLID
impl Feature2DTrait for TEBLID
fn as_raw_mut_Feature2D(&mut self) -> *mut c_void
Source§fn detect(
&mut self,
image: &impl ToInputArray,
keypoints: &mut Vector<KeyPoint>,
mask: &impl ToInputArray,
) -> Result<()>
fn detect( &mut self, image: &impl ToInputArray, keypoints: &mut Vector<KeyPoint>, mask: &impl ToInputArray, ) -> Result<()>
Source§fn detect_def(
&mut self,
image: &impl ToInputArray,
keypoints: &mut Vector<KeyPoint>,
) -> Result<()>
fn detect_def( &mut self, image: &impl ToInputArray, keypoints: &mut Vector<KeyPoint>, ) -> Result<()>
Source§fn detect_multiple(
&mut self,
images: &impl ToInputArray,
keypoints: &mut Vector<Vector<KeyPoint>>,
masks: &impl ToInputArray,
) -> Result<()>
fn detect_multiple( &mut self, images: &impl ToInputArray, keypoints: &mut Vector<Vector<KeyPoint>>, masks: &impl ToInputArray, ) -> Result<()>
Source§fn detect_multiple_def(
&mut self,
images: &impl ToInputArray,
keypoints: &mut Vector<Vector<KeyPoint>>,
) -> Result<()>
fn detect_multiple_def( &mut self, images: &impl ToInputArray, keypoints: &mut Vector<Vector<KeyPoint>>, ) -> Result<()>
Source§fn compute(
&mut self,
image: &impl ToInputArray,
keypoints: &mut Vector<KeyPoint>,
descriptors: &mut impl ToOutputArray,
) -> Result<()>
fn compute( &mut self, image: &impl ToInputArray, keypoints: &mut Vector<KeyPoint>, descriptors: &mut impl ToOutputArray, ) -> Result<()>
Source§fn compute_multiple(
&mut self,
images: &impl ToInputArray,
keypoints: &mut Vector<Vector<KeyPoint>>,
descriptors: &mut impl ToOutputArray,
) -> Result<()>
fn compute_multiple( &mut self, images: &impl ToInputArray, keypoints: &mut Vector<Vector<KeyPoint>>, descriptors: &mut impl ToOutputArray, ) -> Result<()>
Source§fn detect_and_compute(
&mut self,
image: &impl ToInputArray,
mask: &impl ToInputArray,
keypoints: &mut Vector<KeyPoint>,
descriptors: &mut impl ToOutputArray,
use_provided_keypoints: bool,
) -> Result<()>
fn detect_and_compute( &mut self, image: &impl ToInputArray, mask: &impl ToInputArray, keypoints: &mut Vector<KeyPoint>, descriptors: &mut impl ToOutputArray, use_provided_keypoints: bool, ) -> Result<()>
Source§fn detect_and_compute_def(
&mut self,
image: &impl ToInputArray,
mask: &impl ToInputArray,
keypoints: &mut Vector<KeyPoint>,
descriptors: &mut impl ToOutputArray,
) -> Result<()>
fn detect_and_compute_def( &mut self, image: &impl ToInputArray, mask: &impl ToInputArray, keypoints: &mut Vector<KeyPoint>, descriptors: &mut impl ToOutputArray, ) -> Result<()>
fn read(&mut self, file_name: &str) -> Result<()>
fn read_from_node(&mut self, unnamed: &impl FileNodeTraitConst) -> Result<()>
Source§impl Feature2DTraitConst for TEBLID
impl Feature2DTraitConst for TEBLID
fn as_raw_Feature2D(&self) -> *const c_void
fn descriptor_size(&self) -> Result<i32>
fn descriptor_type(&self) -> Result<i32>
fn default_norm(&self) -> Result<i32>
fn write(&self, file_name: &str) -> Result<()>
fn write_to_storage(&self, unnamed: &mut impl FileStorageTrait) -> Result<()>
fn get_default_name(&self) -> Result<String>
fn write_to_storage_with_name( &self, fs: &mut impl FileStorageTrait, name: &str, ) -> Result<()>
fn write_to_storage_ptr_with_name( &self, fs: &Ptr<FileStorage>, name: &str, ) -> Result<()>
Source§impl TEBLIDTrait for TEBLID
impl TEBLIDTrait for TEBLID
fn as_raw_mut_TEBLID(&mut self) -> *mut c_void
Source§impl TEBLIDTraitConst for TEBLID
impl TEBLIDTraitConst for TEBLID
fn as_raw_TEBLID(&self) -> *const c_void
fn get_default_name(&self) -> Result<String>
impl Send for TEBLID
Auto Trait Implementations§
impl Freeze for TEBLID
impl RefUnwindSafe for TEBLID
impl !Sync for TEBLID
impl Unpin for TEBLID
impl UnwindSafe for TEBLID
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<Mat> ModifyInplace for Matwhere
Mat: Boxed,
impl<Mat> ModifyInplace for Matwhere
Mat: Boxed,
Source§unsafe fn modify_inplace<Res>(
&mut self,
f: impl FnOnce(&Mat, &mut Mat) -> Res,
) -> Res
unsafe fn modify_inplace<Res>( &mut self, f: impl FnOnce(&Mat, &mut Mat) -> Res, ) -> Res
Mat
or another similar object. By passing
a mutable reference to the Mat
to this function your closure will get called with the read reference and a write references
to the same Mat
. This is unsafe in a general case as it leads to having non-exclusive mutable access to the internal data,
but it can be useful for some performance sensitive operations. One example of an OpenCV function that allows such in-place
modification is imgproc::threshold
. Read more