[−][src]Struct opencv::xfeatures2d::StarDetector
The class implements the keypoint detector introduced by Agrawal08, synonym of StarDetector. :
Methods
impl StarDetector[src]
pub fn as_raw_StarDetector(&self) -> *mut c_void[src]
pub unsafe fn from_raw_ptr(ptr: *mut c_void) -> Self[src]
impl StarDetector[src]
pub fn create(
max_size: i32,
response_threshold: i32,
line_threshold_projected: i32,
line_threshold_binarized: i32,
suppress_nonmax_size: i32
) -> Result<PtrOfStarDetector>[src]
max_size: i32,
response_threshold: i32,
line_threshold_projected: i32,
line_threshold_binarized: i32,
suppress_nonmax_size: i32
) -> Result<PtrOfStarDetector>
the full constructor
C++ default parameters
- max_size: 45
- response_threshold: 30
- line_threshold_projected: 10
- line_threshold_binarized: 8
- suppress_nonmax_size: 5
Trait Implementations
impl AlgorithmTrait for StarDetector[src]
fn as_raw_Algorithm(&self) -> *mut c_void[src]
fn clear(&mut self) -> Result<()>[src]
fn write(&self, fs: &mut FileStorage) -> Result<()>[src]
fn write_1(&self, fs: &PtrOfFileStorage, name: &str) -> Result<()>[src]
fn read(&mut self, fn_: &FileNode) -> Result<()>[src]
fn empty(&self) -> Result<bool>[src]
fn save(&self, filename: &str) -> Result<()>[src]
fn get_default_name(&self) -> Result<String>[src]
impl Drop for StarDetector[src]
impl Feature2DTrait for StarDetector[src]
fn as_raw_Feature2D(&self) -> *mut c_void[src]
fn detect(
&mut self,
image: &dyn ToInputArray,
keypoints: &mut VectorOfKeyPoint,
mask: &dyn ToInputArray
) -> Result<()>[src]
&mut self,
image: &dyn ToInputArray,
keypoints: &mut VectorOfKeyPoint,
mask: &dyn ToInputArray
) -> Result<()>
fn detect_multiple(
&mut self,
images: &dyn ToInputArray,
keypoints: &mut VectorOfVectorOfKeyPoint,
masks: &dyn ToInputArray
) -> Result<()>[src]
&mut self,
images: &dyn ToInputArray,
keypoints: &mut VectorOfVectorOfKeyPoint,
masks: &dyn ToInputArray
) -> Result<()>
fn compute(
&mut self,
image: &dyn ToInputArray,
keypoints: &mut VectorOfKeyPoint,
descriptors: &mut dyn ToOutputArray
) -> Result<()>[src]
&mut self,
image: &dyn ToInputArray,
keypoints: &mut VectorOfKeyPoint,
descriptors: &mut dyn ToOutputArray
) -> Result<()>
fn compute_multiple(
&mut self,
images: &dyn ToInputArray,
keypoints: &mut VectorOfVectorOfKeyPoint,
descriptors: &mut dyn ToOutputArray
) -> Result<()>[src]
&mut self,
images: &dyn ToInputArray,
keypoints: &mut VectorOfVectorOfKeyPoint,
descriptors: &mut dyn ToOutputArray
) -> Result<()>
fn detect_and_compute(
&mut self,
image: &dyn ToInputArray,
mask: &dyn ToInputArray,
keypoints: &mut VectorOfKeyPoint,
descriptors: &mut dyn ToOutputArray,
use_provided_keypoints: bool
) -> Result<()>[src]
&mut self,
image: &dyn ToInputArray,
mask: &dyn ToInputArray,
keypoints: &mut VectorOfKeyPoint,
descriptors: &mut dyn ToOutputArray,
use_provided_keypoints: bool
) -> Result<()>
fn descriptor_size(&self) -> Result<i32>[src]
fn descriptor_type(&self) -> Result<i32>[src]
fn default_norm(&self) -> Result<i32>[src]
fn write(&self, file_name: &str) -> Result<()>[src]
fn read(&mut self, file_name: &str) -> Result<()>[src]
fn write_1(&self, unnamed: &mut FileStorage) -> Result<()>[src]
fn read_1(&mut self, unnamed: &FileNode) -> Result<()>[src]
fn empty(&self) -> Result<bool>[src]
fn get_default_name(&self) -> Result<String>[src]
fn write_2(&self, fs: &PtrOfFileStorage, name: &str) -> Result<()>[src]
impl Send for StarDetector[src]
impl StarDetectorTrait for StarDetector[src]
fn as_raw_StarDetector(&self) -> *mut c_void[src]
Auto Trait Implementations
impl RefUnwindSafe for StarDetector
impl !Sync for StarDetector
impl Unpin for StarDetector
impl UnwindSafe for StarDetector
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,